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