Vulcan/packages/nova-routing/package.js

21 lines
377 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',
'nova:apollo@1.0.0',
2016-04-22 10:46:09 +09:00
]);
api.mainModule('lib/routing.jsx', ['client', 'server']);
2016-04-22 10:46:09 +09:00
});