Vulcan/packages/telescope-core/package.js

110 lines
3.2 KiB
JavaScript
Raw Normal View History

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',
2015-04-22 12:14:59 +09:00
'session',
2015-04-22 08:47:23 +09:00
'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',
'telescope:events@0.1.0',
'percolatestudio:synced-cron@1.1.0',
'useraccounts:unstyled@1.8.1'
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',
'lib/vote.js',
'lib/config.js'
2015-04-22 08:47:23 +09:00
], ['client', 'server']);
api.addFiles([
'lib/client/handlebars.js',
2015-04-22 12:14:59 +09:00
'lib/client/main.html',
'lib/client/main.js',
'lib/client/templates/admin/admin_menu.html',
'lib/client/templates/admin/admin_menu.js',
'lib/client/templates/admin/admin_wrapper.html',
'lib/client/templates/admin/admin_wrapper.js',
'lib/client/templates/common/css.html',
'lib/client/templates/common/css.js',
'lib/client/templates/common/footer.html',
'lib/client/templates/common/footer.js',
'lib/client/templates/common/layout.html',
'lib/client/templates/common/layout.js',
'lib/client/templates/errors/already_logged_in.html',
'lib/client/templates/errors/loading.html',
'lib/client/templates/errors/loading.js',
'lib/client/templates/errors/no_account.html',
'lib/client/templates/errors/no_account.js',
'lib/client/templates/errors/no_invite.html',
'lib/client/templates/errors/no_invite.js',
'lib/client/templates/errors/no_rights.html',
'lib/client/templates/errors/not_found.html',
'lib/client/templates/forms/quickFormTelescope.html',
'lib/client/templates/forms/quickFormTelescope.js',
'lib/client/templates/forms/urlCustomType.html',
'lib/client/templates/forms/urlCustomType.js',
'lib/client/templates/nav/logo.html',
'lib/client/templates/nav/logo.js',
'lib/client/templates/nav/mobile_nav.html',
'lib/client/templates/nav/mobile_nav.js',
'lib/client/templates/nav/nav.html',
'lib/client/templates/nav/nav.js',
'lib/client/templates/nav/submit_button.html',
'lib/client/templates/nav/user_menu.html',
'lib/client/templates/nav/user_menu.js',
'lib/client/templates/nav/views_menu.html',
'lib/client/templates/nav/views_menu.js',
2015-04-22 08:47:23 +09:00
], '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'
]);
});