You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* basic PoC of doing a sort of incremental typechecking
* move incremental compilation stuff to its own file
* reset back version
* more work
* refactor
* fixes and adjustments for namespaced packages
* adjust watching
* make incremental compilation of resi work
* report error when incremental typechecking fails
* config tweaks
* more guard rails
* debug logging switch
* robustness
* changelog
Copy file name to clipboardExpand all lines: CHANGELOG.md
+4-3
Original file line number
Diff line number
Diff line change
@@ -12,14 +12,15 @@
12
12
13
13
## master
14
14
15
-
##1.42.0
15
+
#### :rocket: New Feature
16
16
17
-
#### :bug: Bug Fix
17
+
- Experimental support for type checking without saving the file :tada:. https://github.com/rescript-lang/rescript-vscode/pull/939
18
18
19
-
- Fix issue with unlabelled arg code swallowing completions. https://github.com/rescript-lang/rescript-vscode/pull/937
19
+
## 1.42.0
20
20
21
21
#### :bug: Bug Fix
22
22
23
+
- Fix issue with unlabelled arg code swallowing completions. https://github.com/rescript-lang/rescript-vscode/pull/937
23
24
- Fix issue where completion inside of switch expression would not work in some cases. https://github.com/rescript-lang/rescript-vscode/pull/936
24
25
- Fix bug that made empty prop expressions in JSX not complete if in the middle of a JSX element. https://github.com/rescript-lang/rescript-vscode/pull/935
"description": "(debug) Enable debug logging (ends up in the extension output)."
193
+
},
179
194
"rescript.settings.binaryPath": {
180
195
"type": [
181
196
"string",
@@ -230,9 +245,9 @@
230
245
},
231
246
"scripts": {
232
247
"clean": "rm -rf client/out server/out",
233
-
"vscode:prepublish": "npm run clean && npm run compile && npm run bundle",
234
-
"compile": "tsc",
235
-
"watch": "tsc -w",
248
+
"vscode:prepublish": "npm run clean && npm run bundle",
249
+
"compile": "tsc -b",
250
+
"watch": "tsc -b -w",
236
251
"postinstall": "cd server && npm i && cd ../client && npm i && cd ../tools && npm i && cd ../tools/tests && npm i && cd ../../analysis/tests && npm i && cd ../reanalyze/examples/deadcode && npm i && cd ../termination && npm i",
0 commit comments