This commit is contained in:
Chris Trevino 2023-08-30 10:57:31 -07:00
Родитель 532b99f9a8
Коммит 5fa4ef4a19
2 изменённых файлов: 0 добавлений и 26 удалений

20
.yarn/sdks/prettier/index.js поставляемый
Просмотреть файл

@ -1,20 +0,0 @@
#!/usr/bin/env node
const {existsSync} = require(`fs`);
const {createRequire} = require(`module`);
const {resolve} = require(`path`);
const relPnpApiPath = "../../../.pnp.cjs";
const absPnpApiPath = resolve(__dirname, relPnpApiPath);
const absRequire = createRequire(absPnpApiPath);
if (existsSync(absPnpApiPath)) {
if (!process.versions.pnp) {
// Setup the environment to be able to require prettier
require(absPnpApiPath).setup();
}
}
// Defer to the real prettier your application uses
module.exports = absRequire(`prettier`);

6
.yarn/sdks/prettier/package.json поставляемый
Просмотреть файл

@ -1,6 +0,0 @@
{
"name": "prettier",
"version": "2.8.8-sdk",
"main": "./index.js",
"type": "commonjs"
}