Vulcan/packages/telescope-daily/package.js

59 lines
1.3 KiB
JavaScript
Raw Normal View History

Package.describe({
name: "telescope:daily",
summary: "Telescope daily view",
2015-07-01 15:51:27 +09:00
version: "0.21.1",
2015-05-16 12:05:53 +09:00
git: "https://github.com/TelescopeJS/Telescope.git"
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
2015-07-01 15:51:27 +09:00
'telescope:core@0.21.1',
'telescope:singleday@0.21.1',
]);
api.addFiles([
'package-tap.i18n',
'lib/daily.js',
'lib/routes.js',
], ['client', 'server']);
api.addFiles([
'lib/client/templates/after_day.html',
'lib/client/templates/before_day.html',
'lib/client/templates/posts_daily.html',
'lib/client/templates/posts_daily.js',
'lib/client/templates/day_heading.html',
'lib/client/templates/load_more_days.html',
'lib/client/templates/load_more_days.js',
'lib/client/stylesheets/daily.scss',
], ['client']);
api.addFiles([
'lib/server/fastrender.js'
], ['server']);
api.addFiles([
"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/sv.i18n.json",
"i18n/tr.i18n.json",
"i18n/vi.i18n.json",
"i18n/zh-CN.i18n.json"
], ["client", "server"]);
});