Vulcan/packages/nova-debug/package.js
2016-10-19 09:54:15 +02:00

47 lines
802 B
JavaScript

Package.describe({
name: "nova:debug",
summary: "Telescope debug package",
version: "0.27.3-nova",
git: "https://github.com/TelescopeJS/telescope.git"
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'fourseven:scss@3.9.0',
// Nova packages
'nova:core@0.27.3-nova',
'nova:posts@0.27.3-nova',
'nova:users@0.27.3-nova',
'nova:email@0.27.3-nova',
'nova:comments@0.27.3-nova'
]);
api.addFiles([
'lib/stylesheets/debug.scss'
], ['client']);
api.addFiles([
'lib/routes.jsx',
'lib/globals.js'
], ['client', 'server']);
api.addFiles([
'lib/server/methods.js'
], ['server']);
api.export([
'Telescope',
'Posts',
'Comments',
'Users',
'Categories'
], ['client', 'server']);
});