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",
|
2016-11-15 10:44:01 +01:00
|
|
|
version: "0.27.4-nova",
|
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([
|
2016-11-15 10:44:01 +01:00
|
|
|
'nova:core@0.27.4-nova',
|
|
|
|
'nova:users@0.27.4-nova', // this dep is needed to check users permissions
|
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
|
|
|
]);
|
|
|
|
|
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
|
|
|
});
|