2016-02-15 22:33:44 +09:00
|
|
|
Package.describe({
|
2016-03-30 09:24:52 +09:00
|
|
|
name: "nova:base-components",
|
2016-02-15 22:33:44 +09:00
|
|
|
summary: "Telescope components package",
|
2016-06-12 12:15:11 +09:00
|
|
|
version: "0.26.3-nova",
|
2016-02-15 22:33:44 +09:00
|
|
|
git: "https://github.com/TelescopeJS/telescope.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
|
|
|
|
api.use([
|
2016-02-24 10:09:23 +09:00
|
|
|
|
|
|
|
// Nova packages
|
2016-03-04 12:15:44 -05:00
|
|
|
|
2016-06-12 12:15:11 +09:00
|
|
|
'nova:core@0.26.3-nova',
|
|
|
|
'nova:posts@0.26.3-nova',
|
|
|
|
'nova:users@0.26.3-nova',
|
|
|
|
'nova:comments@0.26.3-nova',
|
|
|
|
'nova:share@0.26.3-nova',
|
2016-02-24 10:09:23 +09:00
|
|
|
|
|
|
|
// third-party packages
|
2016-02-18 16:26:52 +09:00
|
|
|
|
2016-05-03 12:44:50 +09:00
|
|
|
'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',
|
2016-06-06 10:06:53 +09:00
|
|
|
'utilities:react-list-container@0.1.10',
|
2016-04-18 10:04:05 +09:00
|
|
|
'kadira:dochead@1.5.0'
|
2016-02-15 22:33:44 +09:00
|
|
|
]);
|
|
|
|
|
|
|
|
api.addFiles([
|
2016-02-21 13:57:02 +09:00
|
|
|
'lib/config.js',
|
2016-04-22 10:46:09 +09:00
|
|
|
'lib/components.js'
|
2016-02-15 22:33:44 +09:00
|
|
|
], ['client', 'server']);
|
|
|
|
|
|
|
|
});
|