Vulcan/packages/nova-debug/package.js

39 lines
660 B
JavaScript
Raw Normal View History

Package.describe({
name: "nova:debug",
summary: "Telescope debug package",
2016-06-12 12:15:11 +09:00
version: "0.26.3-nova",
git: "https://github.com/TelescopeJS/telescope.git"
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
2016-06-23 15:00:58 +09:00
'fourseven:scss@3.4.1',
// Nova packages
2016-06-12 12:15:11 +09:00
'nova:core@0.26.3-nova',
'nova:posts@0.26.3-nova',
'nova:users@0.26.3-nova',
2016-06-23 15:00:58 +09:00
'nova:email@0.26.3-nova',
'nova:comments@0.26.3-nova'
]);
api.addFiles([
'lib/stylesheets/debug.scss'
], ['client']);
api.addFiles([
'lib/routes.jsx'
], ['client', 'server']);
2016-06-23 15:00:58 +09:00
api.addFiles([
'lib/server/methods.js'
], ['server']);
});