Files
meteor/packages/madewith/package.js
2012-08-03 23:30:15 -07:00

14 lines
285 B
JavaScript

Package.describe({
summary: "Made With Meteor badge"
});
Package.on_use(function (api) {
api.use(['livedata', 'underscore', 'spark', 'templating'], 'client');
api.add_files([
'madewith.css',
'madewith_badge.css',
'madewith.html',
'madewith.js'], 'client');
});