Skip to content

Commit 8ca41be

Browse files
committed
chore: Update bump edge script
1 parent 3ec4e6e commit 8ca41be

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

scripts/bump-edge.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { consola } from 'consola'
44
import { determineBumpType, loadWorkspace } from './_utils'
55

66
const nightlyPackages = {
7-
nitropack: 'nitropack-edge',
8-
h3: 'h3-nightly',
9-
nuxi: 'nuxi-edge'
7+
// nitro: 'nitro-nightly',
8+
// h3: 'h3-nightly',
9+
nuxi: 'nuxi-nightly',
1010
}
1111

1212
async function main () {
@@ -20,7 +20,7 @@ async function main () {
2020
for (const pkg of workspace.packages.filter(p => !p.data.private)) {
2121
const newVersion = inc(pkg.data.version, bumpType || 'patch')
2222
workspace.setVersion(pkg.data.name, `${newVersion}-${date}.${commit}`, {
23-
updateDeps: true
23+
updateDeps: true,
2424
})
2525
for (const [name, nightlyName] of Object.entries(nightlyPackages)) {
2626
if (pkg.data.dependencies && name in pkg.data.dependencies) {

0 commit comments

Comments
 (0)