Skip to content

Commit 3d65124

Browse files
committed
Error instead of error
1 parent f3102ed commit 3d65124

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/bump.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ const forTesting = process.env.BUMP_CANDIDATE || false;
1111

1212
async function main() {
1313
if (releaseAs !== 'minor' && releaseAs !== 'patch') {
14-
throw new error(`invalid bump type "${releaseAs}". only "minor" (the default) and "patch" are allowed. major version bumps require *slightly* more intention`);
14+
throw new Error(`invalid bump type "${releaseAs}". only "minor" (the default) and "patch" are allowed. major version bumps require *slightly* more intention`);
1515
}
1616

1717
console.error(`Starting ${releaseAs} version bump`);

0 commit comments

Comments
 (0)