tickwerk/.yarn/sdks/prettier/index.js

21 lines
574 B
JavaScript
Raw Normal View History

2022-05-16 02:08:27 +02:00
#!/usr/bin/env node
const {existsSync} = require(`fs`);
2022-10-17 21:46:20 +02:00
const {createRequire} = require(`module`);
2022-05-16 02:08:27 +02:00
const {resolve} = require(`path`);
const relPnpApiPath = "../../../.pnp.cjs";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
2022-10-17 21:46:20 +02:00
const absRequire = createRequire(absPnpApiPath);
2022-05-16 02:08:27 +02:00
if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require prettier/index.js
require(absPnpApiPath).setup();
}
}
// Defer to the real prettier/index.js your application uses
module.exports = absRequire(`prettier/index.js`);