Skip to content

Commit b2a9386

Browse files
authored
chore(postversion): use const instead of let (#700)
1 parent 0b5d6a0 commit b2a9386

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: scripts/postversion.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ $.verbose = true
66
await $`pnpm build`
77
await $`pnpm snapshot`
88

9-
let { version } = JSON.parse(await fs.readFile('./package.json'))
9+
const { version } = JSON.parse(await fs.readFile('./package.json'))
1010

1111
const playgroundDir = path.resolve(__dirname, '../playground/')
1212
cd(playgroundDir)

0 commit comments

Comments
 (0)