mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
27 lines
560 B
JavaScript
27 lines
560 B
JavaScript
Package.describe({
|
||
name: "nova:settings",
|
||
summary: "Telescope settings package – only necessary if you're storing settings in a collection",
|
||
version: "0.27.0-nova",
|
||
git: "https://github.com/TelescopeJS/Telescope.git"
|
||
});
|
||
|
||
Package.onUse(function(api) {
|
||
|
||
api.versionsFrom(['METEOR@1.0']);
|
||
|
||
api.use([
|
||
'nova:lib@0.27.0-nova',
|
||
'nova:users@0.27.0-nova'
|
||
]);
|
||
|
||
api.addFiles([
|
||
'lib/collection.js',
|
||
'lib/init.js',
|
||
'lib/methods.js',
|
||
], ['server', 'client']);
|
||
|
||
api.addFiles([
|
||
'lib/server/publications.js',
|
||
], 'server');
|
||
|
||
});
|