aboutsummaryrefslogtreecommitdiff
path: root/Timeline/ClientApp/.yarn/sdks/prettier/index.js
diff options
context:
space:
mode:
Diffstat (limited to 'Timeline/ClientApp/.yarn/sdks/prettier/index.js')
-rw-r--r--Timeline/ClientApp/.yarn/sdks/prettier/index.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/Timeline/ClientApp/.yarn/sdks/prettier/index.js b/Timeline/ClientApp/.yarn/sdks/prettier/index.js
deleted file mode 100644
index db0cd170..00000000
--- a/Timeline/ClientApp/.yarn/sdks/prettier/index.js
+++ /dev/null
@@ -1,20 +0,0 @@
-#!/usr/bin/env node
-
-const {existsSync} = require(`fs`);
-const {createRequire, createRequireFromPath} = require(`module`);
-const {resolve} = require(`path`);
-
-const relPnpApiPath = "../../../.pnp.js";
-
-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`);