typescript-language-server
Advanced tools
Comparing version 3.0.1 to 3.0.2
# Changelog | ||
All notable changes to this project will be documented in this file. | ||
## [3.0.2](https://github.com/typescript-language-server/typescript-language-server/compare/v3.0.1...v3.0.2) (2023-01-14) | ||
### Bug Fixes | ||
* remove hard dependency on typescript ([#661](https://github.com/typescript-language-server/typescript-language-server/issues/661)) ([9a2e2c8](https://github.com/typescript-language-server/typescript-language-server/commit/9a2e2c83d4992cd90cebc706618a9af604fcf1a9)) | ||
### Refactors | ||
* bundle with rollup and switch to jest for testing ([#663](https://github.com/typescript-language-server/typescript-language-server/issues/663)) ([2c9eb63](https://github.com/typescript-language-server/typescript-language-server/commit/2c9eb632659a3bb9995095576afe88e84833bbdd)) | ||
## [3.0.1](https://github.com/typescript-language-server/typescript-language-server/compare/v3.0.0...v3.0.1) (2022-12-30) | ||
@@ -5,0 +17,0 @@ |
{ | ||
"name": "typescript-language-server", | ||
"version": "3.0.1", | ||
"version": "3.0.2", | ||
"description": "Language Server Protocol (LSP) implementation for TypeScript using tsserver", | ||
@@ -19,14 +19,13 @@ "author": "TypeFox and others", | ||
"bin": { | ||
"typescript-language-server": "./lib/cli.js" | ||
"typescript-language-server": "./lib/cli.mjs" | ||
}, | ||
"scripts": { | ||
"clean": "rimraf lib *.tsbuildinfo", | ||
"test": "cross-env CONSOLE_LOG_LEVEL=warning TS_NODE_PROJECT=./tsconfig.json mocha", | ||
"test:watch": "cross-env CONSOLE_LOG_LEVEL=warning TS_NODE_PROJECT=./tsconfig.json mocha --watch", | ||
"test:compiled": "cross-env CONSOLE_LOG_LEVEL=warning mocha \"./lib/**/*.spec.js\"", | ||
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules CONSOLE_LOG_LEVEL=warning jest", | ||
"test:watch": "cross-env NODE_OPTIONS=--experimental-vm-modules CONSOLE_LOG_LEVEL=warning jest --watch", | ||
"lint": "eslint --ext \".js,.ts\" src", | ||
"fix": "eslint --ext \".js,.ts\" --fix src", | ||
"build": "concurrently -n compile,lint -c blue,green \"yarn compile\" \"yarn lint\"", | ||
"compile": "tsc -b", | ||
"watch": "tsc -b --watch --verbose", | ||
"compile": "rimraf lib && rollup --config rollup.config.ts --configPlugin typescript", | ||
"watch": "rimraf lib && rollup --config rollup.config.ts --configPlugin typescript --watch", | ||
"postversion": "git push --follow-tags", | ||
@@ -40,14 +39,42 @@ "prepare": "cd test-data/jsx && yarn" | ||
"hooks": { | ||
"pre-commit": "yarn lint && yarn build && yarn test:compiled", | ||
"pre-commit": "yarn lint && yarn test && yarn build", | ||
"post-merge": "yarn" | ||
} | ||
}, | ||
"dependencies": { | ||
"commander": "^9.4.1", | ||
"devDependencies": { | ||
"@babel/core": "^7.20.12", | ||
"@babel/preset-env": "^7.20.2", | ||
"@rollup/plugin-commonjs": "^24.0.0", | ||
"@rollup/plugin-node-resolve": "^15.0.1", | ||
"@rollup/plugin-terser": "^0.3.0", | ||
"@rollup/plugin-typescript": "^11.0.0", | ||
"@types/deepmerge": "^2.2.0", | ||
"@types/fs-extra": "^11.0.1", | ||
"@types/jest": "^29.2.5", | ||
"@types/node": "^16.18.11", | ||
"@types/semver": "^7.3.13", | ||
"@types/which": "^2.0.1", | ||
"@typescript-eslint/eslint-plugin": "^5.48.1", | ||
"@typescript-eslint/parser": "^5.48.1", | ||
"babel-jest": "^29.3.1", | ||
"commander": "^9.5.0", | ||
"concurrently": "^7.6.0", | ||
"cross-env": "^7.0.3", | ||
"deepmerge": "^4.2.2", | ||
"eslint": "^8.31.0", | ||
"eslint-plugin-jest": "^27.2.1", | ||
"fs-extra": "^11.1.0", | ||
"husky": "4.x", | ||
"jest": "^29.3.1", | ||
"p-debounce": "^4.0.0", | ||
"pkg-up": "^4.0.0", | ||
"rimraf": "^4.0.4", | ||
"rollup": "^3.10.0", | ||
"semver": "^7.3.8", | ||
"source-map-support": "^0.5.21", | ||
"tempy": "^3.0.0", | ||
"ts-jest": "^29.0.5", | ||
"ts-node": "^10.9.1", | ||
"tslib": "^2.4.1", | ||
"typescript": "^4.9.4", | ||
"vscode-languageserver": "^8.0.2", | ||
@@ -58,24 +85,3 @@ "vscode-languageserver-protocol": "^3.17.2", | ||
"which": "^3.0.0" | ||
}, | ||
"devDependencies": { | ||
"@types/chai": "^4.3.4", | ||
"@types/deepmerge": "^2.2.0", | ||
"@types/fs-extra": "^9.0.13", | ||
"@types/mocha": "^10.0.1", | ||
"@types/node": "^16.18.11", | ||
"@types/semver": "^7.3.13", | ||
"@types/which": "^2.0.1", | ||
"@typescript-eslint/eslint-plugin": "^5.47.1", | ||
"@typescript-eslint/parser": "^5.47.1", | ||
"chai": "^4.3.7", | ||
"concurrently": "^7.6.0", | ||
"cross-env": "^7.0.3", | ||
"eslint": "^8.30.0", | ||
"husky": "4.x", | ||
"mocha": "^10.2.0", | ||
"rimraf": "^3.0.2", | ||
"source-map-support": "^0.5.21", | ||
"ts-node": "^10.9.1", | ||
"typescript": "^4.9.4" | ||
} | ||
} |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
Network access
Supply chain riskThis module accesses the network.
Found 1 instance in 1 package
Shell access
Supply chain riskThis module accesses the system shell. Accessing the system shell increases the risk of executing arbitrary code.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 6 instances in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
Environment variable access
Supply chain riskPackage accesses environment variables, which may be a sign of credential stuffing or data theft.
Found 1 instance in 1 package
Filesystem access
Supply chain riskAccesses the file system, and could potentially read sensitive data.
Found 1 instance in 1 package
1729130
0
40
6
1439
23
3
- Removedcommander@^9.4.1
- Removeddeepmerge@^4.2.2
- Removedfs-extra@^11.1.0
- Removedp-debounce@^4.0.0
- Removedpkg-up@^4.0.0
- Removedsemver@^7.3.8
- Removedtempy@^3.0.0
- Removedvscode-languageserver@^8.0.2
- Removedvscode-uri@^3.0.7
- Removedwhich@^3.0.0
- Removedcommander@9.5.0(transitive)
- Removedcrypto-random-string@4.0.0(transitive)
- Removeddeepmerge@4.3.1(transitive)
- Removedfind-up@6.3.0(transitive)
- Removedfs-extra@11.3.0(transitive)
- Removedgraceful-fs@4.2.11(transitive)
- Removedis-stream@3.0.0(transitive)
- Removedisexe@2.0.0(transitive)
- Removedjsonfile@6.1.0(transitive)
- Removedlocate-path@7.2.0(transitive)
- Removedp-debounce@4.0.0(transitive)
- Removedp-limit@4.0.0(transitive)
- Removedp-locate@6.0.0(transitive)
- Removedpath-exists@5.0.0(transitive)
- Removedpkg-up@4.0.0(transitive)
- Removedsemver@7.7.1(transitive)
- Removedtemp-dir@3.0.0(transitive)
- Removedtempy@3.1.0(transitive)
- Removedtype-fest@1.4.02.19.0(transitive)
- Removedunique-string@3.0.0(transitive)
- Removeduniversalify@2.0.1(transitive)
- Removedvscode-jsonrpc@8.1.08.2.0(transitive)
- Removedvscode-languageserver@8.1.0(transitive)
- Removedvscode-languageserver-protocol@3.17.33.17.5(transitive)
- Removedvscode-languageserver-textdocument@1.0.8(transitive)
- Removedvscode-languageserver-types@3.17.33.17.5(transitive)
- Removedvscode-uri@3.1.0(transitive)
- Removedwhich@3.0.1(transitive)
- Removedyocto-queue@1.1.1(transitive)