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-07-24 19:15:55 +09:00
|
|
|
version: "0.26.5-nova",
|
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-07-24 19:15:55 +09:00
|
|
|
'nova:core@0.26.5-nova',
|
|
|
|
'nova:email@0.26.5-nova',
|
|
|
|
'nova:users@0.26.5-nova'
|
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']);
|
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2016-02-17 21:57:07 +09:00
|
|
|
'lib/server/notifications-server.js'
|
2015-04-22 07:50:11 +09:00
|
|
|
], ['server']);
|
|
|
|
|
2016-07-04 10:49:34 +09:00
|
|
|
});
|