mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
27 lines
No EOL
549 B
JavaScript
27 lines
No EOL
549 B
JavaScript
Package.describe({
|
|
name: "nova:notifications",
|
|
summary: "Telescope notifications package",
|
|
version: "0.26.5-nova",
|
|
git: "https://github.com/TelescopeJS/telescope-notifications.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
api.use([
|
|
'nova:core@0.26.5-nova',
|
|
'nova:email@0.26.5-nova',
|
|
'nova:users@0.26.5-nova'
|
|
]);
|
|
|
|
api.addFiles([
|
|
'lib/notifications.js',
|
|
'lib/custom_fields.js'
|
|
], ['client', 'server']);
|
|
|
|
api.addFiles([
|
|
'lib/server/notifications-server.js'
|
|
], ['server']);
|
|
|
|
}); |