mirror of
https://github.com/vale981/Vulcan
synced 2025-03-06 10:01:40 -05:00
32 lines
590 B
JavaScript
32 lines
590 B
JavaScript
Package.describe({
|
|
name: "nova:demo",
|
|
summary: "Telescope components package",
|
|
version: "0.27.1-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.1-nova',
|
|
'utilities:react-list-container@0.1.10',
|
|
'utilities:smart-publications@0.1.4',
|
|
|
|
// third-party packages
|
|
|
|
// 'alt:react-accounts-ui@1.1.0'
|
|
]);
|
|
|
|
api.addFiles([
|
|
'demo-app.jsx'
|
|
], ['client', 'server']);
|
|
|
|
api.export([
|
|
"Movies"
|
|
], ['client', 'server'])
|
|
});
|