Skip to content

Commit

Permalink
fix:typo in npm script
Browse files Browse the repository at this point in the history
  • Loading branch information
tomas-zijdemans-vipps committed Jan 15, 2024
1 parent f217309 commit 92fe499
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/publish_latest_tag_to_npm.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ if (publish?.toLowerCase().trim() !== "y") {
const spinnerPublish = new Spinner({ message: `Publishing...` });
spinnerPublish.start();
// Igonre npm errors since we are checking for them later
await run(`npm publish ./npm --access public --dry-run`, true);
await run(`npm publish ./npm --access public`, true);
spinnerPublish.stop();

const spinnerNewNpm = new Spinner({
Expand Down

0 comments on commit 92fe499

Please sign in to comment.