Vulcan/packages/nova-routing/package.js

21 lines
393 B
JavaScript
Raw Normal View History

2016-04-22 10:46:09 +09:00
Package.describe({
name: "nova:routing",
summary: "Nova router package",
2016-12-27 11:58:58 +01:00
version: "1.0.0",
git: "https://github.com/TelescopeJS/Telescope.git"
2016-04-22 10:46:09 +09:00
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
// Nova packages
2016-12-27 11:58:58 +01:00
'nova:core@1.0.0',
2016-04-22 10:46:09 +09:00
]);
2017-02-06 14:33:34 +08:00
api.mainModule('lib/server/main.js', 'server');
api.mainModule('lib/client/main.js', 'client');
2016-04-22 10:46:09 +09:00
});