mirror of
https://github.com/vale981/Vulcan
synced 2025-03-11 21:16:40 -04:00
18 lines
418 B
JavaScript
18 lines
418 B
JavaScript
![]() |
Package.describe({summary: "Telescope share module package"});
|
||
|
|
||
|
Package.on_use(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();
|
||
|
});
|