Skip to content

Commit

Permalink
chore
Browse files Browse the repository at this point in the history
  • Loading branch information
rdlabo committed Aug 13, 2024
1 parent dcee48b commit 7d4e0f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const workspaces = ['packages/payment', 'packages/identity', 'packages/terminal'
workspaces.forEach(async (workspace) => {
const releasePackagePath = path.resolve('./' + workspace);
await updatePackage(releasePackagePath + '/package.json', { version: pkg.version });
exec(`cd ${releasePackagePath} && npm install && npm run build && npm publish --tag next`, (err, stdout, stderr) => {
exec(`cd ${releasePackagePath} && npm install && npm run build && npm publish`, (err, stdout, stderr) => {
if (err) {
console.error(err);
return;
Expand Down

0 comments on commit 7d4e0f0

Please sign in to comment.