Skip to content

Commit 221c4cf

Browse files
committed
fix: args not being included
1 parent 9245959 commit 221c4cf

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

cli/build.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,9 @@ export async function build(args: string[]) {
9090
command += " --use COVERAGE_USE=1 --transform as-test/transform";
9191
if (config.coverage.show) command += " --use COVERAGE_SHOW=1";
9292
}
93+
if (config.buildOptions.args) {
94+
command += args.join(" ");
95+
}
9396
buildCommands.push(command);
9497
}
9598

0 commit comments

Comments
 (0)