2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
2017-03-23 16:27:59 +09:00
|
|
|
name: "vulcan:subscribe",
|
2016-08-07 19:26:08 +09:00
|
|
|
summary: "Subscribe to posts, users, etc. to be notified of new activity",
|
2017-08-01 14:20:56 +09:00
|
|
|
version: '1.6.1',
|
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-08-01 14:20:56 +09:00
|
|
|
'vulcan:core@1.6.1',
|
|
|
|
'vulcan:notifications@1.6.1',
|
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-08-01 14:20:56 +09:00
|
|
|
'vulcan:posts@1.6.1',
|
|
|
|
'vulcan:comments@1.6.1',
|
|
|
|
'vulcan:categories@1.6.1',
|
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
|
|
|
});
|