Skip to content

Commit

Permalink
Fix publish (#68)
Browse files Browse the repository at this point in the history
* use token

* Use npm
  • Loading branch information
rkulinski authored Oct 3, 2023
1 parent 1f415a2 commit 74cbdef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/publish.ts
Original file line number Diff line number Diff line change
Expand Up @@ -557,7 +557,7 @@ async function run() {
// Publish each package
changedPackages.map((pkg) => {
const packageDir = path.join(rootDir, 'packages', pkg.packageDir)
const cmd = `cd ${packageDir} && pnpm publish --tag ${npmTag} --access=public --no-git-checks`
const cmd = `cd ${packageDir} && npm publish --tag ${npmTag} --access=public --no-git-checks`
console.info(
` Publishing ${pkg.name}@${version} to npm with tag "${npmTag}"...`,
)
Expand Down

0 comments on commit 74cbdef

Please sign in to comment.