Skip to content
This repository was archived by the owner on Apr 13, 2025. It is now read-only.

Commit e2fd78b

Browse files
authored
fix(install): fix incorrect concurrency option when creating a dev install (#15)
Creating a development install would result in an error because the dashes of the concurrency option that is passed through npm to lerna was missing the two dashes. This bug was introduced in a refactoring in a593c42.
1 parent 9d21ec6 commit e2fd78b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/install/development.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,6 @@ async function installNPMDependencies(nodecgIODir: string) {
185185

186186
async function buildTypeScript(nodecgIODir: string, concurrency: number) {
187187
logger.info("Compiling nodecg-io...");
188-
await runNpmBuild(nodecgIODir, "--", "concurrency", concurrency.toString());
188+
await runNpmBuild(nodecgIODir, "--", "--concurrency", concurrency.toString());
189189
logger.success("Compiled nodecg-io.");
190190
}

0 commit comments

Comments
 (0)