2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
2016-02-24 10:27:46 +09:00
|
|
|
name: "nova:voting",
|
2015-04-22 07:50:11 +09:00
|
|
|
summary: "Telescope scoring package.",
|
2016-12-20 09:50:14 +09:00
|
|
|
version: "0.3.0-nova",
|
2015-04-22 07:50:11 +09:00
|
|
|
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']);
|
2015-04-22 07:50:11 +09:00
|
|
|
|
2016-03-21 10:27:43 +09:00
|
|
|
api.use([
|
2016-12-20 09:50:14 +09:00
|
|
|
'nova:posts@0.3.0-nova',
|
|
|
|
'nova:comments@0.3.0-nova'
|
2016-03-21 10:27:43 +09:00
|
|
|
], ['client', 'server']);
|
|
|
|
|
2016-11-08 12:58:53 +01:00
|
|
|
api.mainModule("lib/server.js", "server");
|
|
|
|
api.mainModule("lib/client.js", "client");
|
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
});
|