Vulcan/packages/telescope-module-share/package.js
2015-03-28 18:38:20 +09:00

23 lines
506 B
JavaScript

Package.describe({summary: "Telescope share module package"});
Package.onUse(function (api) {
api.use([
'telescope-lib',
'telescope-base',
'telescope-settings',
'fourseven:scss'
], ['client', 'server']);
api.use([
'jquery',
'underscore',
'templating'
], 'client');
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();
});