Skip to content

Commit 77881a7

Browse files
committed
tweak
1 parent d5f34ad commit 77881a7

File tree

3 files changed

+3
-6
lines changed

3 files changed

+3
-6
lines changed

jscomp/main/bsb_main.ml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
let () = Bsb_log.setup ()
2626
let current_theme = ref "basic"
2727
let generate_theme_with_path = ref None
28-
let regen = "-regen"
2928
let separator = "--"
3029
let watch_mode = ref false
3130
let make_world = ref false
@@ -67,7 +66,7 @@ let bsb_main_flags : (string * spec * string) list=
6766
"-theme", String (String_set current_theme),
6867
"The theme for project initialization, default is basic(https://github.com/bucklescript/bucklescript/tree/master/jscomp/bsb/templates)";
6968

70-
regen, unit_set_spec force_regenerate,
69+
"-regen", unit_set_spec force_regenerate,
7170
"(internal) Always regenerate build.ninja no matter bsconfig.json is changed or not (for debugging purpose)";
7271
"-themes", call_spec Bsb_theme_init.list_themes,
7372
"List all available themes";

lib/4.06.1/bsb.ml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16825,7 +16825,6 @@ end = struct
1682516825
let () = Bsb_log.setup ()
1682616826
let current_theme = ref "basic"
1682716827
let generate_theme_with_path = ref None
16828-
let regen = "-regen"
1682916828
let separator = "--"
1683016829
let watch_mode = ref false
1683116830
let make_world = ref false
@@ -16867,7 +16866,7 @@ let bsb_main_flags : (string * spec * string) list=
1686716866
"-theme", String (String_set current_theme),
1686816867
"The theme for project initialization, default is basic(https://github.com/bucklescript/bucklescript/tree/master/jscomp/bsb/templates)";
1686916868

16870-
regen, unit_set_spec force_regenerate,
16869+
"-regen", unit_set_spec force_regenerate,
1687116870
"(internal) Always regenerate build.ninja no matter bsconfig.json is changed or not (for debugging purpose)";
1687216871
"-themes", call_spec Bsb_theme_init.list_themes,
1687316872
"List all available themes";

lib/4.06.1/unstable/bsb_native.ml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16982,7 +16982,6 @@ end = struct
1698216982
let () = Bsb_log.setup ()
1698316983
let current_theme = ref "basic"
1698416984
let generate_theme_with_path = ref None
16985-
let regen = "-regen"
1698616985
let separator = "--"
1698716986
let watch_mode = ref false
1698816987
let make_world = ref false
@@ -17024,7 +17023,7 @@ let bsb_main_flags : (string * spec * string) list=
1702417023
"-theme", String (String_set current_theme),
1702517024
"The theme for project initialization, default is basic(https://github.com/bucklescript/bucklescript/tree/master/jscomp/bsb/templates)";
1702617025

17027-
regen, unit_set_spec force_regenerate,
17026+
"-regen", unit_set_spec force_regenerate,
1702817027
"(internal) Always regenerate build.ninja no matter bsconfig.json is changed or not (for debugging purpose)";
1702917028
"-themes", call_spec Bsb_theme_init.list_themes,
1703017029
"List all available themes";

0 commit comments

Comments
 (0)