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