Skip to content

Commit 165a42c

Browse files
committed
Update changelog
1 parent 618affb commit 165a42c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@
1616

1717
- Fix issue with Dynamic import of module in nested expressions https://github.com/rescript-lang/rescript-compiler/pull/6431
1818
- Fix issue where GenType was not supporting `@tag` on ordinary variatns https://github.com/rescript-lang/rescript-compiler/pull/6437
19+
- Fix `rc.4` regressions:
20+
- Don't show compilation time when calling `rescript build -help` command https://github.com/rescript-lang/rescript-compiler/pull/6439
1921

2022
#### :nail_care: Polish
2123

rescript

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,10 @@ Please pick a different one using the \`-ws [host:]port\` flag from bsb.`);
512512
buildFinishedCallback(0);
513513
});
514514
} else {
515+
// We want to show the compile time for build
516+
// But bsb might show a help message in some cases
517+
// We don't want to show the compile time in the case
518+
// But we can only be sure about that when building without any additional args
515519
const isDefinitelyBuild =
516520
maybeSubcommand === undefined ||
517521
(maybeSubcommand === "build" && process_argv.length === 3);

0 commit comments

Comments
 (0)