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