Vulcan/packages/nova-debug/package.js

48 lines
760 B
JavaScript
Raw Normal View History

Package.describe({
name: "nova:debug",
summary: "Telescope debug package",
2016-12-27 11:58:58 +01:00
version: "1.0.0",
git: "https://github.com/TelescopeJS/Telescope.git"
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
'fourseven:scss',
2016-06-23 15:00:58 +09:00
// Nova packages
2016-12-27 11:58:58 +01:00
'nova:core@1.0.0',
'nova:posts@1.0.0',
'nova:users@1.0.0',
'nova:email@1.0.0',
'nova:comments@1.0.0'
]);
api.addFiles([
'lib/stylesheets/debug.scss'
], ['client']);
api.addFiles([
'lib/routes.jsx',
'lib/globals.js'
], ['client', 'server']);
2016-06-23 15:00:58 +09:00
api.addFiles([
'lib/server/methods.js'
], ['server']);
api.export([
2016-08-18 15:38:22 +02:00
'Telescope',
'Posts',
'Comments',
2016-07-21 09:40:05 +09:00
'Users',
'Categories'
], ['client', 'server']);
});