2021-02-11 12:34:01 +01:00
|
|
|
#!/usr/bin/env node
|
|
|
|
|
|
|
|
const {existsSync} = require(`fs`);
|
2022-10-17 21:35:16 +02:00
|
|
|
const {createRequire} = require(`module`);
|
2021-02-11 12:34:01 +01:00
|
|
|
const {resolve} = require(`path`);
|
|
|
|
|
2021-09-12 17:48:14 +02:00
|
|
|
const relPnpApiPath = "../../../../.pnp.cjs";
|
2021-02-11 12:34:01 +01:00
|
|
|
|
|
|
|
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
|
2022-10-17 21:35:16 +02:00
|
|
|
const absRequire = createRequire(absPnpApiPath);
|
2021-02-11 12:34:01 +01:00
|
|
|
|
|
|
|
if (existsSync(absPnpApiPath)) {
|
|
|
|
if (!process.versions.pnp) {
|
|
|
|
// Setup the environment to be able to require eslint/bin/eslint.js
|
|
|
|
require(absPnpApiPath).setup();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Defer to the real eslint/bin/eslint.js your application uses
|
|
|
|
module.exports = absRequire(`eslint/bin/eslint.js`);
|