mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
#!/usr/bin/env node
|
|
|
|
<<<<<<< HEAD
|
|
const { existsSync } = require(`fs`);
|
|
const { createRequire } = require(`module`);
|
|
const { resolve } = require(`path`);
|
|
=======
|
|
const {existsSync} = require(`fs`);
|
|
const {createRequire, register} = require(`module`);
|
|
const {resolve} = require(`path`);
|
|
const {pathToFileURL} = require(`url`);
|
|
>>>>>>> cc02a1a056 (split tgui html (#17476))
|
|
|
|
const relPnpApiPath = '../../../../.pnp.cjs';
|
|
|
|
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
|
|
const absUserWrapperPath = resolve(__dirname, `./sdk.user.cjs`);
|
|
const absRequire = createRequire(absPnpApiPath);
|
|
|
|
const absPnpLoaderPath = resolve(absPnpApiPath, `../.pnp.loader.mjs`);
|
|
const isPnpLoaderEnabled = existsSync(absPnpLoaderPath);
|
|
|
|
if (existsSync(absPnpApiPath)) {
|
|
if (!process.versions.pnp) {
|
|
// Setup the environment to be able to require eslint/bin/eslint.js
|
|
require(absPnpApiPath).setup();
|
|
if (isPnpLoaderEnabled && register) {
|
|
register(pathToFileURL(absPnpLoaderPath));
|
|
}
|
|
}
|
|
}
|
|
|
|
const wrapWithUserWrapper = existsSync(absUserWrapperPath)
|
|
? exports => absRequire(absUserWrapperPath)(exports)
|
|
: exports => exports;
|
|
|
|
// Defer to the real eslint/bin/eslint.js your application uses
|
|
module.exports = wrapWithUserWrapper(absRequire(`eslint/bin/eslint.js`));
|