2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
2016-02-24 10:09:23 +09:00
|
|
|
name: "nova:notifications",
|
2015-04-22 07:50:11 +09:00
|
|
|
summary: "Telescope notifications package",
|
2017-02-16 11:50:22 +01:00
|
|
|
version: "1.1.0",
|
2015-04-22 07:50:11 +09:00
|
|
|
git: "https://github.com/TelescopeJS/telescope-notifications.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
|
|
|
|
api.use([
|
2017-02-16 11:50:22 +01:00
|
|
|
'nova:core@1.1.0',
|
|
|
|
'nova:email@1.1.0',
|
|
|
|
'nova:users@1.1.0'
|
2015-04-22 16:52:42 +09:00
|
|
|
]);
|
2017-02-16 10:04:00 +01:00
|
|
|
|
|
|
|
api.use([
|
2017-02-16 11:50:22 +01:00
|
|
|
'nova:posts@1.1.0',
|
|
|
|
'nova:comments@1.1.0',
|
2017-02-16 10:04:00 +01:00
|
|
|
], {weak: true});
|
2015-04-22 07:50:11 +09:00
|
|
|
|
2017-02-16 10:04:00 +01:00
|
|
|
api.mainModule('lib/modules.js', ['client', 'server']);
|
2015-04-22 07:50:11 +09:00
|
|
|
|
2017-02-16 10:04:00 +01:00
|
|
|
});
|