Files
diff-viewer-extension/.yarn/sdks/eslint/lib/api.js
Pierre Jacquier 769f4f78fd Update to yarn@3.6.0 (#252)
* Update to yarn@3.6.0

* Remove yarn cache

* WIP

* WIP

* WIP

* WIP

* WIP

* New .gitignore rules from docs

* Remove yarn dlx vscode
2023-06-28 05:23:59 -04:00

21 lines
544 B
JavaScript

#!/usr/bin/env node
const {existsSync} = require(`fs`);
const {createRequire} = require(`module`);
const {resolve} = require(`path`);
const relPnpApiPath = "../../../../.pnp.cjs";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
const absRequire = createRequire(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`);