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