Vulcan/packages/nova-voting/package.js

23 lines
471 B
JavaScript
Raw Normal View History

Package.describe({
2016-02-24 10:27:46 +09:00
name: "nova:voting",
summary: "Telescope scoring package.",
2016-12-20 09:50:14 +09:00
version: "0.3.0-nova",
git: "https://github.com/TelescopeJS/Telescope.git"
});
Package.onUse(function (api) {
api.versionsFrom("METEOR@1.0");
2016-12-20 09:50:14 +09:00
api.use(['nova:core@0.3.0-nova']);
api.use([
2016-12-20 09:50:14 +09:00
'nova:posts@0.3.0-nova',
'nova:comments@0.3.0-nova'
], ['client', 'server']);
api.mainModule("lib/server.js", "server");
api.mainModule("lib/client.js", "client");
});