typescript-language-server 0.9.0 → 0.9.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,6 +1,10 @@
1
1
  # Changelog
2
2
  All notable changes to this project will be documented in this file.
3
3
 
4
+ ## [0.9.1] - 2022-01-07
5
+
6
+ - **fix**: don't use the postinstall script
7
+
4
8
  ## [0.9.0] - 2022-01-07
5
9
 
6
10
  - **feat**: implement additional code actions for handling auto-fixing (#318)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typescript-language-server",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Language Server Protocol (LSP) implementation for TypeScript using tsserver",
5
5
  "author": "TypeFox and others",
6
6
  "license": "Apache-2.0",
@@ -30,7 +30,7 @@
30
30
  "compile": "tsc -b",
31
31
  "watch": "tsc -b --watch --verbose",
32
32
  "postversion": "git push --follow-tags",
33
- "postinstall": "cd test-data/jsx && yarn"
33
+ "prepare": "cd test-data/jsx && yarn"
34
34
  },
35
35
  "husky": {
36
36
  "hooks": {