File tree 2 files changed +6
-0
lines changed
2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 16
16
17
17
- Fix issue with Dynamic import of module in nested expressions https://github.com/rescript-lang/rescript-compiler/pull/6431
18
18
- 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
19
21
20
22
#### :nail_care : Polish
21
23
Original file line number Diff line number Diff line change @@ -512,6 +512,10 @@ Please pick a different one using the \`-ws [host:]port\` flag from bsb.`);
512
512
buildFinishedCallback ( 0 ) ;
513
513
} ) ;
514
514
} 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
515
519
const isDefinitelyBuild =
516
520
maybeSubcommand === undefined ||
517
521
( maybeSubcommand === "build" && process_argv . length === 3 ) ;
You can’t perform that action at this time.
0 commit comments