2015-04-22 07:50:26 +09:00
|
|
|
Package.describe({
|
2016-02-24 10:09:23 +09:00
|
|
|
name: "nova:comments",
|
2015-04-22 07:50:26 +09:00
|
|
|
summary: "Telescope comments package",
|
2016-11-15 10:44:01 +01:00
|
|
|
version: "0.27.4-nova",
|
2015-04-22 07:50:26 +09:00
|
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
|
|
|
|
api.use([
|
2016-11-29 11:35:20 +09:00
|
|
|
'nova:core@0.27.4-nova',
|
2016-11-15 10:44:01 +01:00
|
|
|
'nova:posts@0.27.4-nova',
|
|
|
|
'nova:users@0.27.4-nova'
|
2015-04-22 07:50:26 +09:00
|
|
|
]);
|
|
|
|
|
2016-02-17 21:57:07 +09:00
|
|
|
api.use([
|
2016-11-15 10:44:01 +01:00
|
|
|
'nova:notifications@0.27.4-nova',
|
|
|
|
'nova:email@0.27.4-nova'
|
2016-02-17 21:57:07 +09:00
|
|
|
], ['client', 'server'], {weak: true});
|
|
|
|
|
2016-06-23 12:17:39 +09:00
|
|
|
api.mainModule("lib/server.js", "server");
|
|
|
|
api.mainModule("lib/client.js", "client");
|
2015-04-22 07:50:26 +09:00
|
|
|
|
|
|
|
});
|