mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
30 lines
581 B
JavaScript
30 lines
581 B
JavaScript
Package.describe({
|
|
name: "telescope:kadira",
|
|
summary: "Telescope Kadira package",
|
|
version: "0.1.0",
|
|
git: "https://github.com/TelescopeJS/telescope-kadira.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
api.use([
|
|
'telescope:core@0.1.0',
|
|
'meteorhacks:kadira@2.20.1'
|
|
], ['client', 'server']);
|
|
|
|
api.add_files([
|
|
'package-tap.i18n',
|
|
'lib/kadira-settings.js'
|
|
], ['client', 'server']);
|
|
|
|
api.add_files([
|
|
'lib/server/kadira.js'
|
|
], ['server']);
|
|
|
|
api.add_files([
|
|
"i18n/en.i18n.json"
|
|
], ["client", "server"]);
|
|
|
|
});
|