mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
81edd0a6c6
Treat `_third_party_main` like any other CJS entry point, as it
was done before 6967f91368
.
PR-URL: https://github.com/nodejs/node/pull/26677
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
14 lines
258 B
JavaScript
14 lines
258 B
JavaScript
'use strict';
|
|
|
|
const {
|
|
prepareMainThreadExecution
|
|
} = require('internal/bootstrap/pre_execution');
|
|
|
|
prepareMainThreadExecution();
|
|
markBootstrapComplete();
|
|
|
|
// Legacy _third_party_main.js support
|
|
process.nextTick(() => {
|
|
require('_third_party_main');
|
|
});
|