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
constminify_embedded_js=b.option(bool, "minify-embedded-js", "Minify embedded JS helpers with pure Zig asset processing (default: true)") orelsetrue;
140
140
constminify_written_js=b.option(bool, "minify-written-js", "Minify written JS helper assets with pure Zig asset processing (default: false)") orelsefalse;
141
141
constselected_example=b.option(ExampleChoice, "example", "Example to run with `zig build run` (default: all)") orelse.all;
142
-
construn_mode=b.option([]constu8, "run-mode", "Runtime launch order for examples. Accepts presets (`webview`, `browser`, `web-url`) or ordered tokens (`webview,browser,web-url`, `browser,webview`, etc). Default: webview,browser,web-url") orelse"webview,browser,web-url";
142
+
construn_mode=b.option([]constu8, "run-mode", "Runtime launch order for examples. Presets: `webview`, `browser` (app-window), `web-tab`, `web-url`. Or ordered tokens (`webview,browser,web-url`, `browser,webview`, etc). Default: webview,browser,web-url") orelse"webview,browser,web-url";
143
143
if (!isValidRunMode(run_mode)) {
144
-
@panic("invalid -Drun-mode value: use `webview`, `browser`, `web-url`, or an ordered comma-separated combination of these tokens");
144
+
@panic("invalid -Drun-mode value: use `webview`, `browser`, `web-tab`, `web-url`, or an ordered comma-separated combination");
0 commit comments