New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

typescript-language-server

Package Overview
Dependencies
Maintainers
3
Versions
136
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

typescript-language-server - npm Package Compare versions

Comparing version 0.6.0 to 0.6.1

4

CHANGELOG.md
# Changelog
All notable changes to this project will be documented in this file.
## [0.6.1] - 2021-08-16
- Fix Windows path regression introduced in #220 (#249)
## [0.6.0] - 2021-08-12

@@ -5,0 +9,0 @@

13

lib/protocol-translation.js

@@ -43,12 +43,9 @@ "use strict";

function parsePathOrUri(filepath) {
try {
// handles valid URIs from yarn pnp, will error if doesn't have scheme
// zipfile:/foo/bar/baz.zip::path/to/module
// handles valid URIs from yarn pnp, will error if doesn't have scheme
// zipfile:/foo/bar/baz.zip::path/to/module
if (filepath.startsWith('zipfile:')) {
return vscode_uri_1.default.parse(filepath);
}
catch (_a) {
// handles valid filepaths from everything else
// /path/to/module
return vscode_uri_1.default.file(filepath);
}
// handles valid filepaths from everything else /path/to/module
return vscode_uri_1.default.file(filepath);
}

@@ -55,0 +52,0 @@ function pathToUri(filepath, documents) {

{
"name": "typescript-language-server",
"version": "0.6.0",
"version": "0.6.1",
"description": "Language Server Protocol (LSP) implementation for TypeScript using tsserver",

@@ -5,0 +5,0 @@ "author": "TypeFox and others",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc