mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
23 lines
422 B
JavaScript
23 lines
422 B
JavaScript
Package.describe({
|
|
name: "nova:routing",
|
|
summary: "Nova router package",
|
|
version: "0.27.4-nova",
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
});
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
api.use([
|
|
// Nova packages
|
|
'nova:core@0.27.4-nova',
|
|
'nova:apollo@0.27.4-nova',
|
|
]);
|
|
|
|
api.addFiles([
|
|
'lib/store.js',
|
|
'lib/routes.jsx'
|
|
], ['client', 'server']);
|
|
|
|
});
|