Vulcan/packages/nova-base-components/package.js

37 lines
731 B
JavaScript
Raw Normal View History

Package.describe({
name: "nova:base-components",
summary: "Telescope components package",
2016-04-14 10:27:27 +09:00
version: "0.26.0-nova",
git: "https://github.com/TelescopeJS/telescope.git"
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
// Nova packages
2016-04-14 10:27:27 +09:00
'nova:core@0.26.0-nova',
'nova:posts@0.26.0-nova',
'nova:users@0.26.0-nova',
'nova:comments@0.26.0-nova',
'nova:share@0.26.0-nova',
// third-party packages
2016-02-18 16:26:52 +09:00
'tmeasday:check-npm-versions@0.3.0',
'std:accounts-ui@1.1.19',
2016-04-14 16:22:57 +09:00
'utilities:react-list-container@0.1.8',
'kadira:dochead@1.4.0'
]);
api.addFiles([
2016-02-21 13:57:02 +09:00
'lib/config.js',
2016-02-17 15:09:49 +09:00
'lib/components.js',
'lib/routes.jsx'
], ['client', 'server']);
});