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

21 lines
547 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) {
2023-07-10 01:24:08 +02:00
// Setup the environment to be able to require prettier
2022-05-16 02:08:27 +02:00
require(absPnpApiPath).setup();
}
}
2023-07-10 01:24:08 +02:00
// Defer to the real prettier your application uses
module.exports = absRequire(`prettier`);