2016-10-19 10:55:19 +02:00
|
|
|
Package.describe({
|
2016-11-08 12:58:53 +01:00
|
|
|
name: "nova:base-containers",
|
|
|
|
summary: "Telescope containers package",
|
2016-10-19 10:55:19 +02:00
|
|
|
version: "0.27.3-nova",
|
2016-11-08 18:22:17 +01:00
|
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
2016-10-19 10:55:19 +02:00
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom(['METEOR@1.0']);
|
|
|
|
|
|
|
|
api.use([
|
|
|
|
// Nova packages
|
|
|
|
'nova:core@0.27.3-nova',
|
2016-11-08 12:58:53 +01:00
|
|
|
'nova:posts@0.27.3-nova',
|
2016-11-04 08:40:21 +01:00
|
|
|
'nova:users@0.27.3-nova',
|
2016-11-08 12:58:53 +01:00
|
|
|
'nova:comments@0.27.3-nova',
|
|
|
|
'nova:categories@0.27.3-nova',
|
2016-10-19 10:55:19 +02:00
|
|
|
]);
|
|
|
|
|
2016-11-08 12:58:53 +01:00
|
|
|
api.mainModule("lib/server.js", "server");
|
|
|
|
api.mainModule("lib/client.js", "client");
|
|
|
|
|
2016-10-19 10:55:19 +02:00
|
|
|
});
|