ds4/.yarn/sdks/prettier/index.js

21 lines
624 B
JavaScript
Raw Normal View History

2021-02-11 12:34:01 +01:00
#!/usr/bin/env node
const {existsSync} = require(`fs`);
const {createRequire, createRequireFromPath} = require(`module`);
2021-09-12 17:48:14 +02:00
const {resolve} = require(`path`);
2021-02-11 12:34:01 +01:00
2021-09-12 17:48:14 +02:00
const relPnpApiPath = "../../../.pnp.cjs";
2021-02-11 12:34:01 +01:00
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 prettier/index.js
require(absPnpApiPath).setup();
}
}
// Defer to the real prettier/index.js your application uses
module.exports = absRequire(`prettier/index.js`);