Vulcan/packages/telescope-settings/package.js

49 lines
981 B
JavaScript
Raw Normal View History

Package.describe({
name: "telescope:settings",
summary: "Telescope settings package",
2015-07-01 15:51:27 +09:00
version: "0.21.1",
2015-05-16 12:05:53 +09:00
git: "https://github.com/TelescopeJS/Telescope.git"
});
Package.onUse(function(api) {
var both = ['server', 'client'];
api.versionsFrom(['METEOR@1.0']);
api.use([
2015-07-01 15:51:27 +09:00
'telescope:lib@0.21.1',
'telescope:i18n@0.21.1'
]);
api.addFiles([
'lib/settings.js',
'lib/router.js',
'lib/menus.js',
'package-tap.i18n'
], both);
api.addFiles([
'lib/server/publications.js',
], 'server');
api.addFiles([
'lib/client/language_changer.js',
'lib/client/helpers.js',
'lib/client/templates/settings.html',
'lib/client/templates/settings.js'
], 'client');
api.addFiles([
2015-06-15 19:05:42 +09:00
"i18n/ar.i18n.json",
"i18n/bg.i18n.json",
"i18n/de.i18n.json",
"i18n/el.i18n.json",
"i18n/en.i18n.json",
"i18n/es.i18n.json",
"i18n/en.i18n.json",
"i18n/fr.i18n.json"
], both);
api.export('Settings', both);
});