mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
44 lines
No EOL
991 B
JavaScript
44 lines
No EOL
991 B
JavaScript
Package.describe({summary: "Telescope search package"});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.use(['telescope-lib', 'telescope-base', 'aldeed:simple-schema'], ['client', 'server']);
|
|
|
|
api.use([
|
|
'jquery',
|
|
'underscore',
|
|
'iron:router',
|
|
'templating',
|
|
'tap:i18n'
|
|
], 'client');
|
|
|
|
api.add_files([
|
|
'lib/search.js',
|
|
'package-tap.i18n'
|
|
], ['client', 'server']);
|
|
|
|
api.add_files([
|
|
'lib/client/routes.js',
|
|
'lib/client/views/search.html',
|
|
'lib/client/views/search.js',
|
|
'lib/client/css/search.css',
|
|
'lib/client/views/search_logs.html',
|
|
'lib/client/views/search_logs.js'
|
|
], ['client']);
|
|
|
|
api.add_files([
|
|
'lib/server/log_search.js',
|
|
'lib/server/publications.js'
|
|
], ['server']);
|
|
|
|
api.add_files([
|
|
"i18n/de.i18n.json",
|
|
"i18n/en.i18n.json",
|
|
"i18n/es.i18n.json",
|
|
"i18n/fr.i18n.json",
|
|
"i18n/it.i18n.json",
|
|
"i18n/zh-CN.i18n.json",
|
|
], ["client", "server"]);
|
|
|
|
api.export(['adminNav', 'viewParameters']);
|
|
}); |