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