Skip to content

Commit

Permalink
chore: fix publish script
Browse files Browse the repository at this point in the history
  • Loading branch information
ersimont committed Nov 1, 2020
1 parent 858500f commit b00b1d2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .idea/runConfigurations/npm_publish.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion scripts/publish-libs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ async function run(): Promise<void> {

const otp = await getInput('Enter OTP: ');
for (const project of libraries) {
runCommand(`npm publish dist/${project} --otp ${otp}`);
runCommand(`npm publish --access public --otp ${otp} dist/${project}`);
}
}

Expand Down

0 comments on commit b00b1d2

Please sign in to comment.