aboutsummaryrefslogtreecommitdiff
path: root/.yarn/sdks/eslint/bin/eslint.js
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@protonmail.com>2021-09-25 19:49:37 +0000
committerKevin J Hoerr <kjhoerr@protonmail.com>2021-09-25 19:49:37 +0000
commit79ef182b6c3efc074422aed01c668bdef2f30676 (patch)
tree199feec6ac134021aa3fbe888176e321719a1b21 /.yarn/sdks/eslint/bin/eslint.js
parent4228765100aeca3d0ae170621335631ffb784753 (diff)
downloadao-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/eslint.js')
-rwxr-xr-x.yarn/sdks/eslint/bin/eslint.js20
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`);