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