diff options
Diffstat (limited to 'Timeline/ClientApp/.yarn/sdks')
9 files changed, 0 insertions, 166 deletions
diff --git a/Timeline/ClientApp/.yarn/sdks/eslint/lib/api.js b/Timeline/ClientApp/.yarn/sdks/eslint/lib/api.js deleted file mode 100644 index ac3c9fc0..00000000 --- a/Timeline/ClientApp/.yarn/sdks/eslint/lib/api.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 eslint/lib/api.js - require(absPnpApiPath).setup(); - } -} - -// Defer to the real eslint/lib/api.js your application uses -module.exports = absRequire(`eslint/lib/api.js`); diff --git a/Timeline/ClientApp/.yarn/sdks/eslint/package.json b/Timeline/ClientApp/.yarn/sdks/eslint/package.json deleted file mode 100644 index 517ac919..00000000 --- a/Timeline/ClientApp/.yarn/sdks/eslint/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "eslint", - "version": "7.5.0-pnpify", - "main": "./lib/api.js", - "type": "commonjs" -}
\ No newline at end of file diff --git a/Timeline/ClientApp/.yarn/sdks/integrations.yml b/Timeline/ClientApp/.yarn/sdks/integrations.yml deleted file mode 100644 index bce9333e..00000000 --- a/Timeline/ClientApp/.yarn/sdks/integrations.yml +++ /dev/null @@ -1,5 +0,0 @@ -# This file is automatically generated by PnPify.
-# Manual changes will be lost!
-
-integrations:
- - vscode
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`); diff --git a/Timeline/ClientApp/.yarn/sdks/prettier/package.json b/Timeline/ClientApp/.yarn/sdks/prettier/package.json deleted file mode 100644 index 3f4429dc..00000000 --- a/Timeline/ClientApp/.yarn/sdks/prettier/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "prettier", - "version": "2.0.5-pnpify", - "main": "./index.js", - "type": "commonjs" -}
\ No newline at end of file diff --git a/Timeline/ClientApp/.yarn/sdks/typescript/lib/tsc.js b/Timeline/ClientApp/.yarn/sdks/typescript/lib/tsc.js deleted file mode 100644 index e030711c..00000000 --- a/Timeline/ClientApp/.yarn/sdks/typescript/lib/tsc.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 typescript/lib/tsc.js - require(absPnpApiPath).setup(); - } -} - -// Defer to the real typescript/lib/tsc.js your application uses -module.exports = absRequire(`typescript/lib/tsc.js`); diff --git a/Timeline/ClientApp/.yarn/sdks/typescript/lib/tsserver.js b/Timeline/ClientApp/.yarn/sdks/typescript/lib/tsserver.js deleted file mode 100644 index 75c31bd3..00000000 --- a/Timeline/ClientApp/.yarn/sdks/typescript/lib/tsserver.js +++ /dev/null @@ -1,63 +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); - -const moduleWrapper = tsserver => { - // VSCode sends the zip paths to TS using the "zip://" prefix, that TS - // doesn't understand. This layer makes sure to remove the protocol - // before forwarding it to TS, and to add it back on all returned paths. - - const {isAbsolute} = require(`path`); - - const Session = tsserver.server.Session; - const {onMessage: originalOnMessage, send: originalSend} = Session.prototype; - - return Object.assign(Session.prototype, { - onMessage(/** @type {string} */ message) { - return originalOnMessage.call(this, JSON.stringify(JSON.parse(message), (key, value) => { - return typeof value === 'string' ? removeZipPrefix(value) : value; - })); - }, - - send(/** @type {any} */ msg) { - return originalSend.call(this, JSON.parse(JSON.stringify(msg, (key, value) => { - return typeof value === 'string' ? addZipPrefix(value) : value; - }))); - } - }); - - function addZipPrefix(str) { - // We add the `zip:` prefix to both `.zip/` paths and virtual paths - if (isAbsolute(str) && !str.match(/^zip:/) && (str.match(/\.zip\//) || str.match(/\$\$virtual\//))) { - // Absolute VSCode `Uri.fsPath`s need to start with a slash. - // VSCode only adds it automatically for supported schemes, - // so we have to do it manually for the `zip` scheme. - return `zip:${str.replace(/^\/?/, `/`)}`; - } else { - return str; - } - } - - function removeZipPrefix(str) { - return process.platform === 'win32' - ? str.replace(/^zip:\//, ``) - : str.replace(/^zip:/, ``); - } -}; - -if (existsSync(absPnpApiPath)) { - if (!process.versions.pnp) { - // Setup the environment to be able to require typescript/lib/tsserver.js - require(absPnpApiPath).setup(); - } -} - -// Defer to the real typescript/lib/tsserver.js your application uses -module.exports = moduleWrapper(absRequire(`typescript/lib/tsserver.js`)); diff --git a/Timeline/ClientApp/.yarn/sdks/typescript/lib/typescript.js b/Timeline/ClientApp/.yarn/sdks/typescript/lib/typescript.js deleted file mode 100644 index 7e3c852f..00000000 --- a/Timeline/ClientApp/.yarn/sdks/typescript/lib/typescript.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 typescript/lib/typescript.js - require(absPnpApiPath).setup(); - } -} - -// Defer to the real typescript/lib/typescript.js your application uses -module.exports = absRequire(`typescript/lib/typescript.js`); diff --git a/Timeline/ClientApp/.yarn/sdks/typescript/package.json b/Timeline/ClientApp/.yarn/sdks/typescript/package.json deleted file mode 100644 index 4b400ac3..00000000 --- a/Timeline/ClientApp/.yarn/sdks/typescript/package.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "name": "typescript", - "version": "3.9.7-pnpify", - "main": "./lib/typescript.js", - "type": "commonjs" -}
\ No newline at end of file |