@unotest/web 0.31.0 → 0.32.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -41,12 +41,7 @@ declare function legacyLayoutDiagnostic(layout: LegacyLayout): {
41
41
  * returns argv with the flag removed. An explicit shell `UNOTEST_ENV` is left
42
42
  * untouched when `--env` is absent. */
43
43
  declare function applyEnvFlag(args: string[]): string[];
44
- /** Argv as the subcommand sees it.
45
- *
46
- * `bundle` owns its own `--env`: it names an environment ON A BOX, not a
47
- * local `.env.<name>` overlay. Consuming it globally left `bundle push
48
- * --run --env prod` refusing to run with "--run needs --env" — the command
49
- * the box manual and every CI job use. */
44
+ /** Argv as the subcommand sees it. */
50
45
  declare function commandArgs(rawArgs: string[]): string[];
51
46
  declare function main(argv: string[]): void;
52
47