Vulcan/packages/nova-core/package.js

25 lines
434 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-12-27 11:58:58 +01:00
version: "1.0.0",
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-12-27 11:58:58 +01:00
'nova:lib@1.0.0',
'nova:users@1.0.0',
2016-08-08 10:54:33 +09:00
]);
2016-08-08 10:54:33 +09:00
api.imply([
2016-12-27 11:58:58 +01:00
'nova:lib@1.0.0'
2016-08-08 10:54:33 +09:00
]);
2015-04-22 12:34:23 +09:00
2017-02-06 22:24:05 +08:00
api.mainModule('lib/server/main.js', 'server');
api.mainModule('lib/client/main.js', 'client');
2016-02-25 17:44:43 +09:00
2015-04-22 08:47:23 +09:00
});