2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
2016-08-07 19:26:08 +09:00
|
|
|
name: "nova:subscribe",
|
|
|
|
summary: "Subscribe to posts, users, etc. to be notified of new activity",
|
2017-03-08 11:48:47 +00:00
|
|
|
version: "1.2.0",
|
2015-04-22 07:50:11 +09:00
|
|
|
git: "https://github.com/TelescopeJS/telescope-subscribe-to-posts.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
|
2016-07-27 18:00:40 +02:00
|
|
|
api.use([
|
2017-03-08 11:48:47 +00:00
|
|
|
'nova:core@1.2.0',
|
|
|
|
'nova:users@1.2.0', // this dep is needed to check users permissions
|
|
|
|
'nova:notifications@1.2.0',
|
2016-08-14 17:59:20 +02:00
|
|
|
// dependencies on posts, categories are done with nested imports to reduce explicit dependencies
|
2016-07-27 18:00:40 +02:00
|
|
|
]);
|
2017-02-16 10:04:00 +01:00
|
|
|
|
|
|
|
api.use([
|
2017-03-08 11:48:47 +00:00
|
|
|
'nova:posts@1.2.0',
|
|
|
|
'nova:comments@1.2.0',
|
|
|
|
'nova:categories@1.2.0',
|
2017-02-16 10:04:00 +01:00
|
|
|
], {weak: true});
|
2016-07-27 18:00:40 +02:00
|
|
|
|
2016-08-14 17:59:20 +02:00
|
|
|
api.mainModule("lib/modules.js", ["client"]);
|
|
|
|
api.mainModule("lib/modules.js", ["server"]);
|
2016-07-27 18:00:40 +02:00
|
|
|
|
2015-04-22 07:50:11 +09:00
|
|
|
});
|