darkness-dependent-vision/.yarn/sdks/prettier/index.js

21 lines
574 B
JavaScript
Raw Normal View History

#!/usr/bin/env node
const {existsSync} = require(`fs`);
2022-10-17 21:57:33 +02:00
const {createRequire} = require(`module`);
const {resolve} = require(`path`);
2022-04-18 02:47:56 +02:00
const relPnpApiPath = "../../../.pnp.cjs";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
2022-10-17 21:57:33 +02:00
const absRequire = createRequire(absPnpApiPath);
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`);