Skip to content

Commit

Permalink
fix release script for bump version nammatham package
Browse files Browse the repository at this point in the history
  • Loading branch information
mildronize committed Jan 21, 2024
1 parent 7504a2c commit 168a7ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/libs/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ async function modifyDependency(packagePath: string, newVersion: string) {

// Replaces all @nammatham/* dependencies
for (const [name, version] of Object.entries(dependencies ?? {})) {
if (name.startsWith('@nammatham/')) {
if (name.startsWith('@nammatham/' || name === 'nammatham')) {
dependencies[name] = newVersion;
}
}
Expand Down

0 comments on commit 168a7ec

Please sign in to comment.