Skip to content

Commit

Permalink
Use tsx instead of npx to fix versioning
Browse files Browse the repository at this point in the history
  • Loading branch information
dopenguin committed Feb 4, 2025
1 parent 87f613c commit cf4b13e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/versionPackages.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ for (const path of packages) {
tags.push(`${packageName}@${nextVersion}`)

cp.execSync(
`npx nx release version --projects ${packageName} --specifier ${nextVersion} --git-commit-message "Update package ${packageName} to {version}." --verbose false`,
`tsx nx release version --projects ${packageName} --specifier ${nextVersion} --git-commit-message "Update package ${packageName} to {version}." --verbose false`,
{ stdio: ['pipe', 'ignore', 'pipe'] }
)
}
Expand Down

0 comments on commit cf4b13e

Please sign in to comment.