Skip to content

Commit fdd7f08

Browse files
committed
fix: update npm publish command to use pnpm with additional options
1 parent 05ea027 commit fdd7f08

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/npm-publish.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ const cwd = process.cwd()
88
for(const d of ["core", "api", "runtime", "cli"]) {
99
console.log(`publishing ${d}`)
1010
cd(`packages/${d}`)
11-
await $`npm publish --access public --otp ${otp}`
11+
await $`pnpm publish --access public --otp ${otp} --publish-branch dev --no-git-checks`
1212
cd(cwd)
1313
}

0 commit comments

Comments
 (0)