mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
53 lines
1.1 KiB
JavaScript
53 lines
1.1 KiB
JavaScript
![]() |
Package.describe({
|
||
|
name: "telescope:daily",
|
||
|
summary: "Telescope daily view",
|
||
|
version: "0.1.0"
|
||
|
});
|
||
|
|
||
|
Package.onUse(function (api) {
|
||
|
|
||
|
api.versionsFrom(['METEOR@1.0']);
|
||
|
|
||
|
api.use([
|
||
|
'telescope:lib@0.3.0',
|
||
|
'telescope:settings@0.1.0',
|
||
|
'iron:router@1.0.5',
|
||
|
'meteorhacks:fast-render@2.3.2',
|
||
|
'meteorhacks:subs-manager@1.3.0',
|
||
|
'tap:i18n@1.4.1',
|
||
|
'telescope:singleday@0.1.0',
|
||
|
'fourseven:scss@2.1.1'
|
||
|
], ['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.scss',
|
||
|
], ['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']);
|
||
|
});
|