comamnds/spec: remove plain from RunCPUOptions

This commit is contained in:
2024-06-22 15:25:03 +08:00
parent 920bf9b180
commit 33036559c8

View File

@@ -16,7 +16,7 @@ export interface RunCPUOptions {
*/
benchmarks?: string[];
buildType?: "nobuild" | "rebuild" | "plain",
buildType?: "nobuild" | "rebuild",
/**
* Default: HTML and text
@@ -77,7 +77,7 @@ export function runcpuOptions(o: RunCPUOptions): string[] {
return ["--nobuild"];
case "rebuild":
return ["--rebuild"];
case "plain":
default:
return [];
}
}),