diff --git a/package.json b/package.json index a73ff59..37cf848 100644 --- a/package.json +++ b/package.json @@ -7,7 +7,7 @@ "author": "David Zwart", "license": "AGPL-3.0-or-later", "private": false, - "version": "0.1.4-alpha", + "version": "0.1.5-alpha", "bin": { "fdm-monster": "dist/cli.js", "fdmm": "dist/cli.js" diff --git a/src/cli.ts b/src/cli.ts index 771fa12..1f1237f 100644 --- a/src/cli.ts +++ b/src/cli.ts @@ -256,7 +256,7 @@ async function removeService(cwd: string, workspace: string, tolerateMissing: bo function runInstall(path: string, useNpmInstead: boolean = false) { // Installs package.json packages - execSync(useNpmInstead ? "yarn install" : "npm i", { + execSync(useNpmInstead ? "npm i" : "yarn install", { cwd: path, }); }