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

30 lines
688 B
JavaScript
Raw Normal View History

Package.describe({
name: "nova:base-components",
summary: "Telescope components package",
2016-09-22 07:58:59 +02:00
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
2016-09-22 07:58:59 +02:00
'nova:core@0.27.1-nova',
'nova:posts@0.27.1-nova',
'nova:users@0.27.1-nova',
'nova:comments@0.27.1-nova',
// third-party packages
'fortawesome:fontawesome@4.5.0',
2016-04-15 09:17:04 +09:00
'tmeasday:check-npm-versions@0.3.1',
2016-06-10 10:25:38 +09:00
'std:accounts-ui@1.2.6',
'utilities:react-list-container@0.1.10',
]);
api.mainModule("lib/server.js", "server");
api.mainModule("lib/client.js", "client");
});