2015-04-22 07:50:11 +09:00
|
|
|
Package.describe({
|
|
|
|
name: "telescope:scoring",
|
|
|
|
summary: "Telescope scoring package.",
|
|
|
|
version: "0.1.0",
|
|
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
|
|
});
|
|
|
|
|
|
|
|
Package.onUse(function (api) {
|
|
|
|
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
|
2015-04-22 16:52:42 +09:00
|
|
|
api.use(['telescope:core@0.1.0']);
|
2015-04-22 07:50:11 +09:00
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-04-22 08:31:11 +09:00
|
|
|
'lib/scoring.js',
|
|
|
|
], ['client','server']);
|
2015-04-22 07:50:11 +09:00
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
api.addFiles([
|
2015-04-22 08:31:11 +09:00
|
|
|
'lib/server/cron.js',
|
2015-04-22 07:50:11 +09:00
|
|
|
], ['server']);
|
|
|
|
|
2015-05-01 18:22:00 +02:00
|
|
|
|
|
|
|
});
|