mirror of
https://github.com/vale981/Vulcan
synced 2025-03-09 12:16:37 -04:00
24 lines
434 B
JavaScript
24 lines
434 B
JavaScript
Package.describe({
|
|
name: "nova:core",
|
|
summary: "Telescope core package",
|
|
version: "1.0.0",
|
|
git: "https://github.com/TelescopeJS/Telescope.git"
|
|
});
|
|
|
|
Package.onUse(function(api) {
|
|
|
|
api.versionsFrom("METEOR@1.0");
|
|
|
|
api.use([
|
|
'nova:lib@1.0.0',
|
|
'nova:users@1.0.0',
|
|
]);
|
|
|
|
api.imply([
|
|
'nova:lib@1.0.0'
|
|
]);
|
|
|
|
api.mainModule('lib/server/main.js', 'server');
|
|
api.mainModule('lib/client/main.js', 'client');
|
|
|
|
});
|