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 4dd91a9 commit 495c95dCopy full SHA for 495c95d
templates/package-builder/src/yeoman/app/index.ts
@@ -186,7 +186,7 @@ function assertNpmVersionIsAtLeast(minVersion: string) {
186
const runningVersion = execSync('npm -v').toString();
187
if (!semver.gte(runningVersion, minVersion, /* loose */ true)) {
188
console.error(`This generator requires NPM version ${minVersion} or later. You are running NPM version ${runningVersion}`);
189
- process.exit(0);
+ process.exit(1);
190
}
191
192
0 commit comments