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",
|
2016-12-27 11:58:58 +01:00
|
|
|
version: "1.0.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([
|
2016-12-27 11:58:58 +01:00
|
|
|
'nova:core@1.0.0',
|
|
|
|
'nova:email@1.0.0',
|
|
|
|
'nova:users@1.0.0'
|
2015-04-22 16:52:42 +09:00
|
|
|
]);
|
2015-04-22 07:50:11 +09:00
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2016-04-01 12:38:50 +09:00
|
|
|
'lib/notifications.js',
|
|
|
|
'lib/custom_fields.js'
|
2015-04-22 07:50:11 +09:00
|
|
|
], ['client', 'server']);
|
|
|
|
|
2016-07-04 10:49:34 +09:00
|
|
|
});
|