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