Package.describe({ name: "telescope:daily", summary: "Telescope daily view", version: "0.20.2", git: "https://github.com/TelescopeJS/Telescope.git" }); Package.onUse(function (api) { api.versionsFrom(['METEOR@1.0']); api.use([ 'telescope:core@0.20.2', 'telescope:singleday@0.20.2', ]); api.addFiles([ 'package-tap.i18n', 'lib/daily.js', 'lib/routes.js', ], ['client', 'server']); api.addFiles([ '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.scss', ], ['client']); api.addFiles([ "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"]); });