Vulcan/packages/nova-notifications/package.js

26 lines
493 B
JavaScript
Raw Normal View History

Package.describe({
name: "nova:notifications",
summary: "Telescope notifications package",
2016-12-27 11:58:58 +01:00
version: "1.0.0",
git: "https://github.com/TelescopeJS/telescope-notifications.git"
});
Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
api.use([
2016-12-27 11:58:58 +01:00
'nova:core@1.0.0',
'nova:email@1.0.0',
'nova:users@1.0.0'
]);
api.use([
'nova:posts@1.0.0',
'nova:comments@1.0.0',
], {weak: true});
api.mainModule('lib/modules.js', ['client', 'server']);
});