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-09-22 07:58:59 +02:00
|
|
|
version: "0.27.1-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-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',
|
2016-02-24 10:09:23 +09:00
|
|
|
|
|
|
|
// third-party packages
|
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-02-15 22:33:44 +09:00
|
|
|
]);
|
|
|
|
|
2016-06-23 17:24:58 +09:00
|
|
|
api.mainModule("lib/server.js", "server");
|
|
|
|
api.mainModule("lib/client.js", "client");
|
|
|
|
|
2016-02-15 22:33:44 +09:00
|
|
|
});
|