diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-20 16:35:27 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-07-20 16:35:27 -0400 |
commit | b795a6e51b9ff69ed958f985908f81aff73022dc (patch) | |
tree | 37b51353f6be564586fb0b4aae8692429497608d /.yarn/sdks | |
parent | b228c3b222f37ceaa888f926811e6cfadf33e24a (diff) | |
download | tanzanite-b795a6e51b9ff69ed958f985908f81aff73022dc.tar.gz tanzanite-b795a6e51b9ff69ed958f985908f81aff73022dc.tar.bz2 tanzanite-b795a6e51b9ff69ed958f985908f81aff73022dc.zip |
fixed caching
Diffstat (limited to '.yarn/sdks')
-rw-r--r-- | .yarn/sdks/integrations.yml | 4 | ||||
-rw-r--r-- | .yarn/sdks/typescript/lib/tsserver.js | 8 | ||||
-rw-r--r-- | .yarn/sdks/typescript/lib/tsserverlibrary.js | 8 | ||||
-rw-r--r-- | .yarn/sdks/typescript/package.json | 2 |
4 files changed, 19 insertions, 3 deletions
diff --git a/.yarn/sdks/integrations.yml b/.yarn/sdks/integrations.yml index 76ed42b..aa9d0d0 100644 --- a/.yarn/sdks/integrations.yml +++ b/.yarn/sdks/integrations.yml @@ -1,5 +1,5 @@ -# This file is automatically generated by PnPify. -# Manual changes will be lost! +# This file is automatically generated by @yarnpkg/sdks. +# Manual changes might be lost! integrations: - vscode diff --git a/.yarn/sdks/typescript/lib/tsserver.js b/.yarn/sdks/typescript/lib/tsserver.js index 1c0f94d..4d90f38 100644 --- a/.yarn/sdks/typescript/lib/tsserver.js +++ b/.yarn/sdks/typescript/lib/tsserver.js @@ -72,6 +72,14 @@ const moduleWrapper = tsserver => { str = resolve(`zipfile:${str}`); } break; + // Support neovim native LSP and [typescript-language-server](https://github.com/theia-ide/typescript-language-server) + // We have to resolve the actual file system path from virtual path, + // everything else is up to neovim + case `neovim`: { + str = normalize(resolved).replace(/\.zip\//, `.zip::`); + str = `zipfile:${str}`; + } break; + default: { str = `zip:${str}`; } break; diff --git a/.yarn/sdks/typescript/lib/tsserverlibrary.js b/.yarn/sdks/typescript/lib/tsserverlibrary.js index 77e7ef5..c3de4ff 100644 --- a/.yarn/sdks/typescript/lib/tsserverlibrary.js +++ b/.yarn/sdks/typescript/lib/tsserverlibrary.js @@ -72,6 +72,14 @@ const moduleWrapper = tsserver => { str = resolve(`zipfile:${str}`); } break; + // Support neovim native LSP and [typescript-language-server](https://github.com/theia-ide/typescript-language-server) + // We have to resolve the actual file system path from virtual path, + // everything else is up to neovim + case `neovim`: { + str = normalize(resolved).replace(/\.zip\//, `.zip::`); + str = `zipfile:${str}`; + } break; + default: { str = `zip:${str}`; } break; diff --git a/.yarn/sdks/typescript/package.json b/.yarn/sdks/typescript/package.json index 27270c7..fbe0980 100644 --- a/.yarn/sdks/typescript/package.json +++ b/.yarn/sdks/typescript/package.json @@ -1,6 +1,6 @@ { "name": "typescript", - "version": "4.2.4-pnpify", + "version": "0.0.0-sdk", "main": "./lib/typescript.js", "type": "commonjs" } |