We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5fc1694 commit 8997640Copy full SHA for 8997640
scripts/release.ts
@@ -271,12 +271,11 @@ if (!(await Confirm.prompt({ message: `Bump ${dim(`(${manifest.version} → ${ne
271
await step(`Updating version in ${manifestFile}`, async () => {
272
manifest.version = newVersion
273
await Deno.writeTextFile(manifestFile, JSON.stringify(manifest, null, 2))
274
- await $`deno fmt ${manifestFile}`
275
})
276
277
await step('Generating changelog', async () => {
278
await $`deno run -A --no-lock npm:conventional-changelog-cli -i CHANGELOG.md -s -p conventionalcommits -k deno.json`
279
- await $`deno fmt CHANGELOG.md`
+ await $`deno task format`
280
281
282
if (!(await Confirm.prompt({ message: 'Changelog generated. Does it look good?' }))) Deno.exit()
0 commit comments