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 5d4e1ab commit f5608f0Copy full SHA for f5608f0
scripts/version.js
@@ -69,10 +69,12 @@ async function run() {
69
// We will only bump the router version if this is an experimental
70
let routerVersion = currentRouterVersion;
71
72
- // 2. Confirm the next version number
73
- let answer = await prompt(
74
- `Are you sure you want to bump version ${currentVersion} to ${version}? [Yn] `
75
- );
+ // 2. Confirm the next version number (skip prompt on experimental CI releases)
+ let answer = isExperimental
+ ? true
+ : await prompt(
76
+ `Are you sure you want to bump version ${currentVersion} to ${version}? [Yn] `
77
+ );
78
79
if (answer === false) return 0;
80
0 commit comments