Vulcan/packages/telescope-module-share/package.js

33 lines
541 B
JavaScript
Raw Normal View History

2015-04-03 18:52:23 +09:00
Package.describe({
version: '0.1.0',
name: "telescope-module-share",
summary: "Telescope share module package"
});
2014-07-05 11:54:23 +09:00
2014-08-28 13:39:30 +09:00
Package.onUse(function (api) {
2014-07-05 11:54:23 +09:00
api.use([
'jquery',
'underscore',
2015-04-03 18:52:23 +09:00
'templating',
'fourseven:scss'
2014-07-05 11:54:23 +09:00
], 'client');
2015-04-03 18:52:23 +09:00
api.use([
'telescope:lib',
'telescope-base',
2015-04-03 18:52:23 +09:00
]);
api.add_files([
'lib/share.js'
], ['client', 'server']);
2014-07-05 11:54:23 +09:00
2015-04-03 18:52:23 +09:00
api.add_files([
'lib/client/post_share.html',
'lib/client/post_share.js',
2015-04-03 18:52:23 +09:00
'lib/client/post_share.scss'
], ['client']);
2014-07-05 11:54:23 +09:00
// api.export();
2015-03-28 18:30:26 +09:00
});