diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2021-09-25 19:49:37 +0000 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2021-09-25 19:49:37 +0000 |
| commit | 79ef182b6c3efc074422aed01c668bdef2f30676 (patch) | |
| tree | 199feec6ac134021aa3fbe888176e321719a1b21 /.yarn/sdks/eslint/bin | |
| parent | 4228765100aeca3d0ae170621335631ffb784753 (diff) | |
| download | ao-coverage-79ef182b6c3efc074422aed01c668bdef2f30676.tar.gz ao-coverage-79ef182b6c3efc074422aed01c668bdef2f30676.tar.bz2 ao-coverage-79ef182b6c3efc074422aed01c668bdef2f30676.zip | |
Move to Plug'n'Play over node_modules
Diffstat (limited to '.yarn/sdks/eslint/bin')
| -rwxr-xr-x | .yarn/sdks/eslint/bin/eslint.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.yarn/sdks/eslint/bin/eslint.js b/.yarn/sdks/eslint/bin/eslint.js new file mode 100755 index 0000000..4d327a4 --- /dev/null +++ b/.yarn/sdks/eslint/bin/eslint.js @@ -0,0 +1,20 @@ +#!/usr/bin/env node + +const {existsSync} = require(`fs`); +const {createRequire, createRequireFromPath} = require(`module`); +const {resolve} = require(`path`); + +const relPnpApiPath = "../../../../.pnp.cjs"; + +const absPnpApiPath = resolve(__dirname, relPnpApiPath); +const absRequire = (createRequire || createRequireFromPath)(absPnpApiPath); + +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`); |
