Vulcan/packages/nova-comments/package.js

22 lines
417 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",
2017-03-08 11:48:47 +00:00
version: "1.2.0",
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([
2017-03-08 11:48:47 +00:00
'nova:core@1.2.0',
'nova:posts@1.2.0',
'nova:users@1.2.0'
2015-04-22 07:50:26 +09:00
]);
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
});