2015-04-22 08:47:23 +09:00
|
|
|
Package.describe({
|
|
|
|
name: "telescope:core",
|
|
|
|
summary: "Telescope core package",
|
|
|
|
version: "0.1.0",
|
|
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function(api) {
|
|
|
|
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
|
|
|
|
api.use([
|
|
|
|
'aldeed:simple-schema@1.3.2',
|
|
|
|
'aldeed:autoform@5.1.2',
|
|
|
|
'tap:i18n@1.4.1',
|
|
|
|
'fourseven:scss@2.1.1',
|
|
|
|
'iron:router@1.0.5',
|
|
|
|
'templating',
|
|
|
|
'telescope:messages@0.1.0',
|
|
|
|
'telescope:lib@0.3.0',
|
|
|
|
'matb33:collection-hooks@0.7.11',
|
|
|
|
'chuangbo:marked@0.3.5',
|
|
|
|
'meteorhacks:fast-render@2.3.2',
|
2015-04-22 11:33:36 +09:00
|
|
|
'meteorhacks:subs-manager@1.3.0',
|
|
|
|
'telescope:events@0.1.0',
|
|
|
|
'telescope:settings@0.1.0',
|
|
|
|
'percolatestudio:synced-cron@1.1.0'
|
2015-04-22 08:47:23 +09:00
|
|
|
]);
|
|
|
|
|
|
|
|
api.addFiles([
|
|
|
|
'lib/router/config.js',
|
|
|
|
'lib/router/filters.js',
|
|
|
|
'lib/router/admin.js',
|
|
|
|
'lib/router/server.js'
|
|
|
|
], ['client', 'server']);
|
|
|
|
|
|
|
|
api.addFiles([
|
|
|
|
// 'lib/client/templates/page.html',
|
|
|
|
], 'client');
|
|
|
|
|
|
|
|
api.addFiles([
|
2015-04-22 11:33:36 +09:00
|
|
|
'lib/server/start.js'
|
2015-04-22 08:47:23 +09:00
|
|
|
], ['server']);
|
|
|
|
|
|
|
|
api.addFiles([
|
2015-04-22 11:33:36 +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/fr.i18n.json",
|
|
|
|
"i18n/it.i18n.json",
|
|
|
|
"i18n/nl.i18n.json",
|
|
|
|
"i18n/pl.i18n.json",
|
|
|
|
"i18n/pt-BR.i18n.json",
|
|
|
|
"i18n/ro.i18n.json",
|
|
|
|
"i18n/ru.i18n.json",
|
|
|
|
"i18n/se.i18n.json",
|
|
|
|
"i18n/tr.i18n.json",
|
|
|
|
"i18n/vn.i18n.json",
|
|
|
|
"i18n/zh-CN.i18n.json"
|
2015-04-22 08:47:23 +09:00
|
|
|
], ["client", "server"]);
|
|
|
|
|
|
|
|
api.export([
|
|
|
|
'coreSubscriptions'
|
|
|
|
]);
|
|
|
|
});
|