Vulcan/packages/telescope-module-share/package.js
2014-08-28 13:39:30 +09:00

18 lines
No EOL
417 B
JavaScript

Package.describe({summary: "Telescope share module package"});
Package.onUse(function (api) {
api.use(['telescope-lib', 'telescope-base'], ['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'], ['client']);
// api.export();
});