2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
2018-09-12 11:59:00 +09:00
|
|
|
name: 'vulcan:subscribe',
|
|
|
|
summary: 'Subscribe to posts, users, etc. to be notified of new activity',
|
2018-12-31 15:03:19 +09:00
|
|
|
version: '1.12.12',
|
2018-09-12 11:59:00 +09:00
|
|
|
git: 'https://github.com/VulcanJS/Vulcan.git'
|
2015-04-22 07:50:11 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
2018-01-28 23:03:10 -07:00
|
|
|
api.versionsFrom('1.6.1');
|
2015-04-22 07:50:11 +09:00
|
|
|
|
2016-07-27 18:00:40 +02:00
|
|
|
api.use([
|
2018-12-31 15:03:19 +09:00
|
|
|
'vulcan:core@1.12.12',
|
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([
|
2018-12-31 15:03:19 +09:00
|
|
|
'vulcan:posts@1.12.12',
|
|
|
|
'vulcan:comments@1.12.12',
|
|
|
|
'vulcan:categories@1.12.12',
|
2017-02-16 10:04:00 +01:00
|
|
|
], {weak: true});
|
2016-07-27 18:00:40 +02:00
|
|
|
|
2018-09-12 11:59:00 +09: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
|
|
|
});
|