mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 01:51:40 -05:00
27 lines
638 B
JavaScript
27 lines
638 B
JavaScript
Package.describe({
|
|
name: 'vulcan:subscribe',
|
|
summary: 'Subscribe to posts, users, etc. to be notified of new activity',
|
|
version: '1.12.13',
|
|
git: 'https://github.com/VulcanJS/Vulcan.git'
|
|
});
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom('1.6.1');
|
|
|
|
api.use([
|
|
'vulcan:core@1.12.13',
|
|
// dependencies on posts, categories are done with nested imports to reduce explicit dependencies
|
|
]);
|
|
|
|
api.use([
|
|
'vulcan:posts@1.12.13',
|
|
'vulcan:comments@1.12.13',
|
|
'vulcan:categories@1.12.13',
|
|
], {weak: true});
|
|
|
|
api.mainModule('lib/modules.js', ['client']);
|
|
api.mainModule('lib/modules.js', ['server']);
|
|
|
|
});
|