Skip to content

Commit

Permalink
Add path to the package to publish
Browse files Browse the repository at this point in the history
  • Loading branch information
mimshins committed Mar 26, 2024
1 parent ef77512 commit 1be6166
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/ci/publish-package.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ void (async () => {
const { tag = "latest" } =
(packageJSON.publishConfig as { tag: string } | undefined) ?? {};

const { stderr, stdout } = await execCmd(`npm publish --tag ${tag}`);
const { stderr, stdout } = await execCmd(`npm publish ./dist/ --tag ${tag}`);

console.log({ stdout });
console.error({ stderr });
Expand Down

0 comments on commit 1be6166

Please sign in to comment.