Vulcan/packages/telescope-daily/package.js
2015-01-03 10:14:39 +09:00

45 lines
No EOL
984 B
JavaScript

Package.describe({summary: "Telescope daily view"});
Package.onUse(function (api) {
api.use([
'telescope-lib',
'telescope-base',
'iron:router',
'meteorhacks:fast-render',
'meteorhacks:subs-manager',
'tap:i18n',
'telescope-singleday'
], ['client', 'server']);
api.use([
'jquery',
'underscore',
'templating'
], 'client');
api.add_files([
'package-tap.i18n',
'lib/daily.js',
'lib/routes.js',
], ['client', 'server']);
api.add_files([
'lib/client/templates/posts_daily.html',
'lib/client/templates/after_day.html',
'lib/client/templates/before_day.html',
'lib/client/templates/posts_daily.js',
'lib/client/stylesheets/daily.css',
], ['client']);
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(['PostsDailyController']);
});