2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
2016-02-24 10:09:23 +09:00
|
|
|
name: "nova:share",
|
2015-04-22 07:50:11 +09:00
|
|
|
summary: "Telescope share module package",
|
2015-12-30 15:47:46 +09:00
|
|
|
version: "0.25.7",
|
2015-04-22 07:50:11 +09:00
|
|
|
git: "https://github.com/TelescopeJS/telescope-share.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
|
2016-02-24 10:09:23 +09:00
|
|
|
api.use(['nova:core@0.25.7']);
|
2015-05-01 18:22:00 +02:00
|
|
|
|
|
|
|
api.addFiles([
|
2015-04-22 07:50:11 +09:00
|
|
|
'lib/share.js'
|
|
|
|
], ['client', 'server']);
|
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-04-22 07:50:11 +09:00
|
|
|
'lib/client/post_share.html',
|
|
|
|
'lib/client/post_share.js',
|
|
|
|
'lib/client/post_share.scss'
|
|
|
|
], ['client']);
|
|
|
|
|
|
|
|
// api.export();
|
|
|
|
});
|