We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f99b96e commit 6b26b38Copy full SHA for 6b26b38
src/utils/ascWrapper.ts
@@ -13,7 +13,7 @@ export class CompilationError extends Error {
13
14
export async function ascMain(ascArgv: string[]) {
15
const stderr = createMemoryStream();
16
- const { error } = await compiler.compile(ascArgv.concat(...["--noColors"]), { stderr });
+ const { error } = await compiler.compile(ascArgv.concat("--noColors"), { stderr });
17
if (error) {
18
throw new CompilationError(stderr.toString());
19
}
0 commit comments