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