Vulcan/packages/telescope-daily/package.js
2014-08-28 13:39:30 +09:00

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']);
});