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-12-27 11:58:58 +01:00
|
|
|
version: "1.0.0",
|
2016-11-08 18:22:17 +01:00
|
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
2016-02-15 22:33:44 +09:00
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
|
|
|
|
api.use([
|
2016-02-24 10:09:23 +09:00
|
|
|
// Nova packages
|
2016-12-27 11:58:58 +01:00
|
|
|
'nova:core@1.0.0',
|
|
|
|
'nova:posts@1.0.0',
|
|
|
|
'nova:users@1.0.0',
|
|
|
|
'nova:comments@1.0.0',
|
|
|
|
'nova:voting@1.0.0',
|
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',
|
2017-02-07 09:43:51 +08:00
|
|
|
'std:accounts-ui@1.2.18',
|
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-12-08 23:48:16 +01:00
|
|
|
|
2016-02-15 22:33:44 +09:00
|
|
|
});
|