mirror of
https://github.com/meteor/meteor.git
synced 2026-05-02 03:01:46 -04:00
14 lines
303 B
JavaScript
14 lines
303 B
JavaScript
Package.describe({
|
|
summary: "Made With Meteor badge"
|
|
});
|
|
|
|
Package.on_use(function (api) {
|
|
api.use(['livedata', 'mongo-livedata', 'underscore', 'spark', 'templating'], 'client');
|
|
|
|
api.add_files([
|
|
'madewith.css',
|
|
'madewith_badge.css',
|
|
'madewith.html',
|
|
'madewith.js'], 'client');
|
|
});
|