Vulcan/packages/nova-categories/package.js

21 lines
441 B
JavaScript
Raw Normal View History

Package.describe({
2016-02-24 14:47:44 +09:00
name: "nova:categories",
summary: "Telescope tags package",
2016-11-15 10:44:01 +01:00
version: "0.27.4-nova",
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
]);
2016-06-23 15:11:56 +09:00
api.mainModule("lib/server.js", "server");
api.mainModule("lib/client.js", "client");
2016-06-23 15:11:56 +09:00
});