2015-04-03 18:52:23 +09:00
|
|
|
Package.describe({
|
|
|
|
version: '0.1.0',
|
|
|
|
name: "telescope-module-share",
|
|
|
|
summary: "Telescope share module package"
|
|
|
|
});
|
2014-07-05 11:54:23 +09:00
|
|
|
|
2014-08-28 13:39:30 +09:00
|
|
|
Package.onUse(function (api) {
|
2014-07-05 11:54:23 +09:00
|
|
|
|
|
|
|
api.use([
|
|
|
|
'jquery',
|
|
|
|
'underscore',
|
2015-04-03 18:52:23 +09:00
|
|
|
'templating',
|
|
|
|
'fourseven:scss'
|
2014-07-05 11:54:23 +09:00
|
|
|
], 'client');
|
|
|
|
|
2015-04-03 18:52:23 +09:00
|
|
|
api.use([
|
2015-04-20 14:58:48 +09:00
|
|
|
'telescope:lib',
|
2015-04-20 13:57:37 +09:00
|
|
|
'telescope-base',
|
2015-04-03 18:52:23 +09:00
|
|
|
]);
|
|
|
|
|
|
|
|
api.add_files([
|
|
|
|
'lib/share.js'
|
|
|
|
], ['client', 'server']);
|
2014-07-05 11:54:23 +09:00
|
|
|
|
2015-04-03 18:52:23 +09:00
|
|
|
api.add_files([
|
2015-04-20 13:57:37 +09:00
|
|
|
'lib/client/post_share.html',
|
|
|
|
'lib/client/post_share.js',
|
2015-04-03 18:52:23 +09:00
|
|
|
'lib/client/post_share.scss'
|
|
|
|
], ['client']);
|
2015-04-20 13:57:37 +09:00
|
|
|
|
2014-07-05 11:54:23 +09:00
|
|
|
// api.export();
|
2015-03-28 18:30:26 +09:00
|
|
|
});
|