Skip to content

Commit

Permalink
fix script and bump core version
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-saland committed Oct 10, 2023
1 parent 320f6c5 commit 479ae3d
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion how-to/container-platform-starter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
},
"license": "ISC",
"devDependencies": {
"@openfin/core": "^28.72.17",
"@openfin/core": "^32.76.10",
"openfin-adapter": "32.76.10",
"ts-loader": "^9.4.4",
"typescript": "^5.1.6",
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion scripts/update-versions.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ for (const fileNamePattern of fileNamePatterns) {
json[targetKey]['openfin-adapter'] = replacementValue;
}

if (targetKey === 'dependencies' && json[targetKey] !== undefined) {
if ((targetKey === 'dependencies' || targetKey === 'devDependencies') && json[targetKey] !== undefined) {
json[targetKey]['@openfin/core'] = replacementValue;
}

Expand Down

0 comments on commit 479ae3d

Please sign in to comment.