Skip to content

Commit

Permalink
chore(release): fix cross dependency upgrade for peer dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
anehx committed May 11, 2022
1 parent 8a997bf commit c44b7b8
Show file tree
Hide file tree
Showing 3 changed files with 1,114 additions and 344 deletions.
2 changes: 1 addition & 1 deletion bin/update-cross-dependencies.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ await new Promise((resolve) => {
const result = Object.entries(updates).reduce(
(result, [name, { version }]) => {
return result.replace(
new RegExp(`"${name}": ".*"`),
new RegExp(`"${name}": ".*"`, "g"),
`"${name}": "${version}"`
);
},
Expand Down
2 changes: 1 addition & 1 deletion packages/form/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"webpack": "5.72.0"
},
"peerDependencies": {
"@projectcaluma/ember-workflow": "^11.0.0-beta.6"
"@projectcaluma/ember-workflow": "^11.0.0-beta.7"
},
"peerDependenciesMeta": {
"@projectcaluma/ember-workflow": {
Expand Down
Loading

0 comments on commit c44b7b8

Please sign in to comment.