Vulcan/packages/nova-comments/package.js

28 lines
595 B
JavaScript
Raw Normal View History

2015-04-22 07:50:26 +09:00
Package.describe({
name: "nova:comments",
2015-04-22 07:50:26 +09:00
summary: "Telescope comments package",
2016-11-30 12:07:45 +01:00
version: "0.27.5-nova",
2015-04-22 07:50:26 +09:00
git: "https://github.com/TelescopeJS/Telescope.git"
});
Package.onUse(function (api) {
api.versionsFrom(['METEOR@1.0']);
api.use([
2016-11-30 12:07:45 +01:00
'nova:lib@0.27.5-nova',
'nova:settings@0.27.5-nova',
'nova:posts@0.27.5-nova',
'nova:users@0.27.5-nova'
2015-04-22 07:50:26 +09:00
]);
api.use([
2016-11-30 12:07:45 +01:00
'nova:notifications@0.27.5-nova',
'nova:email@0.27.5-nova'
], ['client', 'server'], {weak: true});
2016-06-23 12:17:39 +09:00
api.mainModule("lib/server.js", "server");
api.mainModule("lib/client.js", "client");
2015-04-22 07:50:26 +09:00
});