mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
24 lines
477 B
JavaScript
24 lines
477 B
JavaScript
Package.describe({
|
|
name: "vulcan:notifications",
|
|
summary: "Vulcan notifications package",
|
|
version: '1.5.0',
|
|
git: "https://github.com/TelescopeJS/telescope-notifications.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
api.use([
|
|
'vulcan:core@1.5.0',
|
|
'vulcan:email@1.5.0',
|
|
]);
|
|
|
|
api.use([
|
|
'vulcan:posts@1.5.0',
|
|
'vulcan:comments@1.5.0',
|
|
], {weak: true});
|
|
|
|
api.mainModule('lib/modules.js', ['client', 'server']);
|
|
|
|
});
|