mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
27 lines
546 B
JavaScript
27 lines
546 B
JavaScript
Package.describe({
|
|
name: "nova:kadira",
|
|
summary: "Telescope Kadira package",
|
|
version: "0.27.3-nova",
|
|
git: "https://github.com/TelescopeJS/telescope.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
api.use([
|
|
'nova:core@0.27.3-nova',
|
|
'meteorhacks:kadira@2.30.0',
|
|
'kadira:debug@3.2.2',
|
|
'meteorhacks:kadira-profiler@1.2.1'
|
|
], ['client', 'server']);
|
|
|
|
api.addFiles([
|
|
'lib/kadira-settings.js'
|
|
], ['client', 'server']);
|
|
|
|
api.addFiles([
|
|
'lib/server/kadira.js'
|
|
], ['server']);
|
|
|
|
});
|