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 c288c7b commit 9dd98f0Copy full SHA for 9dd98f0
scripts/release.js
@@ -210,6 +210,17 @@ async function main() {
210
step('\nGenerating changelog...')
211
await run(`pnpm`, ['run', 'changelog'])
212
213
+ // @ts-ignore
214
+ const { yes: changelogOk } = await prompt({
215
+ type: 'confirm',
216
+ name: 'yes',
217
+ message: `Changelog generated. Does it look good?`
218
+ })
219
+
220
+ if (!changelogOk) {
221
+ return
222
+ }
223
224
// update pnpm-lock.yaml
225
// skipped during canary release because the package names changed and installing with `workspace:*` would fail
226
if (!isCanary) {
0 commit comments