2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
2016-02-24 14:47:44 +09:00
|
|
|
name: "nova:categories",
|
2015-04-22 07:50:11 +09:00
|
|
|
summary: "Telescope tags package",
|
2016-11-15 10:44:01 +01:00
|
|
|
version: "0.27.4-nova",
|
2015-04-22 07:50:11 +09:00
|
|
|
git: "https://github.com/TelescopeJS/telescope-tags.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
|
2016-02-17 14:22:28 +09:00
|
|
|
api.use([
|
2016-11-15 10:44:01 +01:00
|
|
|
'nova:core@0.27.4-nova',
|
|
|
|
'nova:posts@0.27.4-nova',
|
|
|
|
'nova:users@0.27.4-nova'
|
2016-02-17 14:22:28 +09:00
|
|
|
]);
|
2015-04-22 07:50:11 +09:00
|
|
|
|
2016-06-23 15:11:56 +09:00
|
|
|
api.mainModule("lib/server.js", "server");
|
|
|
|
api.mainModule("lib/client.js", "client");
|
2015-04-22 07:50:11 +09:00
|
|
|
|
2016-06-23 15:11:56 +09:00
|
|
|
});
|