diff options
| author | Kevin J Hoerr <kjhoerr@protonmail.com> | 2023-12-24 05:55:31 +0000 |
|---|---|---|
| committer | Kevin J Hoerr <kjhoerr@protonmail.com> | 2023-12-24 05:55:31 +0000 |
| commit | cb4b6835b50e733d4fdae0e899ffeeed43e2d6d8 (patch) | |
| tree | efdb1912c574d53811115b469d210c309dde18a0 /.yarn/sdks/eslint/lib/api.js | |
| parent | 140d5803b7a8d63de479ec53ebace32acb263d8b (diff) | |
| download | submelon.dev-cb4b6835b50e733d4fdae0e899ffeeed43e2d6d8.tar.gz submelon.dev-cb4b6835b50e733d4fdae0e899ffeeed43e2d6d8.tar.bz2 submelon.dev-cb4b6835b50e733d4fdae0e899ffeeed43e2d6d8.zip | |
yarn pnp
Diffstat (limited to '.yarn/sdks/eslint/lib/api.js')
| -rw-r--r-- | .yarn/sdks/eslint/lib/api.js | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/.yarn/sdks/eslint/lib/api.js b/.yarn/sdks/eslint/lib/api.js new file mode 100644 index 0000000..fc728d9 --- /dev/null +++ b/.yarn/sdks/eslint/lib/api.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 + require(absPnpApiPath).setup(); + } +} + +// Defer to the real eslint your application uses +module.exports = absRequire(`eslint`); |
