mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 18:11:40 -05:00
26 lines
No EOL
668 B
JavaScript
26 lines
No EOL
668 B
JavaScript
Package.describe({summary: "Telescope daily view"});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.use(['telescope-lib', 'telescope-base', 'meteorhacks:fast-render', 'meteorhacks:subs-manager'], ['client', 'server']);
|
|
|
|
api.use([
|
|
'jquery',
|
|
'underscore',
|
|
'iron:router',
|
|
'templating'
|
|
], 'client');
|
|
|
|
api.add_files(['lib/daily.js'], ['client', 'server']);
|
|
|
|
api.add_files([
|
|
'lib/client/routes.js',
|
|
'lib/client/templates/posts_daily.html',
|
|
'lib/client/templates/posts_daily.js',
|
|
'lib/client/stylesheets/daily.css',
|
|
], ['client']);
|
|
|
|
api.add_files(['lib/server/publications.js'], ['server']);
|
|
|
|
api.export(['PostsDailyController']);
|
|
}); |