Sam Therapy
0e75e3c991
All checks were successful
continuous-integration/drone/push Build is passing
Signed-off-by: Sam Therapy <sam@samtherapy.net>
20 lines
600 B
JavaScript
20 lines
600 B
JavaScript
#!/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`);
|