-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
35 lines (28 loc) · 1.07 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
require('async_hooks').createHook({ init: () => {} }).enable();
const { trampoline } = (() => {
try {
return require('@jymfony/autoloader');
} catch (e) {
if ('MODULE_NOT_FOUND' === e.code) {
return require(__dirname + '/../Autoloader');
}
throw e;
}
})();
const nullish = (value, cond) => ((undefined === value) || (null === value)) ? cond() : value;
const file = require.main.filename;
delete require.cache[file];
const mainExports = trampoline(file);
let runtime = nullish(process.env.APP_RUNTIME, () => Jymfony.Component.Runtime.JymfonyRuntime);
const reflection = new ReflectionClass(runtime);
runtime = reflection.newInstance(Object.assign({
project_dir: __jymfony.autoload.finder.findRoot(),
}, nullish(globalThis.APP_RUNTIME_OPTIONS, () => ({}))));
let [ app, args ] = runtime.getResolver(mainExports['default']).resolve();
(async function () {
app = await app(...args);
return runtime.getRunner(app).run();
}())
.then(exitCode => {
process.nextTick(() => process.exit(exitCode));
}, console.error);