Vulcan/packages/nova-core/package.js

25 lines
450 B
JavaScript
Raw Normal View History

2015-04-22 08:47:23 +09:00
Package.describe({
name: "nova:core",
2015-04-22 08:47:23 +09:00
summary: "Telescope core package",
2016-11-15 10:44:01 +01:00
version: "0.27.4-nova",
2015-04-22 08:47:23 +09:00
git: "https://github.com/TelescopeJS/Telescope.git"
});
Package.onUse(function(api) {
api.versionsFrom("METEOR@1.0");
2015-05-16 12:05:53 +09:00
2016-08-08 10:54:33 +09:00
api.use([
2016-11-15 10:44:01 +01:00
'nova:lib@0.27.4-nova',
'nova:events@0.27.4-nova'
2016-08-08 10:54:33 +09:00
]);
2015-04-22 15:49:46 +09:00
2016-08-08 10:54:33 +09:00
api.imply([
2016-11-15 10:44:01 +01:00
'nova:lib@0.27.4-nova'
2016-08-08 10:54:33 +09:00
]);
2015-04-22 12:34:23 +09:00
2016-08-08 10:54:33 +09:00
api.mainModule("lib/server.js", "server");
api.mainModule("lib/client.js", "client");
2016-02-25 17:44:43 +09:00
2015-04-22 08:47:23 +09:00
});