2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
|
|
|
name: "telescope:search",
|
|
|
|
summary: "Telescope search package",
|
2015-05-18 12:10:07 +09:00
|
|
|
version: "0.20.0",
|
2015-04-22 07:50:11 +09:00
|
|
|
git: "https://github.com/TelescopeJS/telescope-pages.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
|
2015-05-18 12:10:07 +09:00
|
|
|
api.use(['telescope:core@0.20.0']);
|
2015-04-22 07:50:11 +09:00
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-04-22 07:50:11 +09:00
|
|
|
'lib/search.js',
|
|
|
|
'package-tap.i18n'
|
|
|
|
], ['client', 'server']);
|
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-04-22 07:50:11 +09:00
|
|
|
'lib/client/routes.js',
|
|
|
|
'lib/client/templates/search.html',
|
|
|
|
'lib/client/templates/search.js',
|
|
|
|
'lib/client/templates/search_logs.html',
|
|
|
|
'lib/client/templates/search_logs.js',
|
|
|
|
'lib/client/stylesheets/search.scss'
|
|
|
|
], ['client']);
|
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-04-22 07:50:11 +09:00
|
|
|
'lib/server/log_search.js',
|
|
|
|
'lib/server/publications.js'
|
|
|
|
], ['server']);
|
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-04-22 07:50:11 +09:00
|
|
|
"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"]);
|
|
|
|
|
|
|
|
});
|