Skip to content

Commit 19e0b29

Browse files
committed
Un-document 1.0.3; prepare for 1.0.4
1 parent f27237a commit 19e0b29

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

HISTORY.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
## 1.0.3
1+
## 1.0.4
22

33
- Some diagnostics watcher staleness fix.
44
- Various type hover fixes.
5-
- Monorepo/yarn workspace support. The performance of formatting is slightly and obligatory degraded, for those use-cases unforunately. Regular project setups aren't affected.
5+
- Monorepo/yarn workspace support.
66

77
## 1.0.2
88

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "The official VSCode plugin for ReScript.",
44
"author": "chenglou",
55
"license": "MIT",
6-
"version": "1.0.3",
6+
"version": "1.0.4",
77
"repository": {
88
"type": "git",
99
"url": "https://github.com/rescript-lang/rescript-vscode"

server/src/server.ts

+1-3
Original file line numberDiff line numberDiff line change
@@ -419,9 +419,7 @@ process.on("message", (msg: m.Message) => {
419419
} else {
420420
// See comment on findBscExeDirOfFile for why we need
421421
// to recursively search for bsc.exe upward
422-
let bscExeDir = utils.findBscExeDirOfFile(
423-
filePath
424-
);
422+
let bscExeDir = utils.findBscExeDirOfFile(filePath);
425423
if (bscExeDir === null) {
426424
let params: p.ShowMessageParams = {
427425
type: p.MessageType.Error,

0 commit comments

Comments
 (0)