Vulcan/packages/telescope-module-share/package.js
2015-04-03 18:52:23 +09:00

32 lines
No EOL
546 B
JavaScript

Package.describe({
version: '0.1.0',
name: "telescope-module-share",
summary: "Telescope share module package"
});
Package.onUse(function (api) {
api.use([
'jquery',
'underscore',
'templating',
'fourseven:scss'
], 'client');
api.use([
'telescope-lib',
'telescope-base',
]);
api.add_files([
'lib/share.js'
], ['client', 'server']);
api.add_files([
'lib/client/post_share.html',
'lib/client/post_share.js',
'lib/client/post_share.scss'
], ['client']);
// api.export();
});