Skip to content

Commit

Permalink
Add missing typescript devDependency
Browse files Browse the repository at this point in the history
Depending on `yarn` on disk layout details, the packages would not be
guaranteed to have a `tsc` script available to them.

This was causing a failure when publishing.
  • Loading branch information
rwjblue committed Jun 18, 2021
1 parent 446c5dd commit 8fe8eae
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion packages/addon-shim/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"semver": "^7.3.5"
},
"devDependencies": {
"@types/semver": "^7.3.6"
"@types/semver": "^7.3.6",
"typescript": "~4.0.0"
},
"engines": {
"node": "12.* || 14.* || >= 16"
Expand Down
3 changes: 2 additions & 1 deletion packages/util/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"qunit": "^2.14.1",
"qunit-dom": "^1.6.0"
"qunit-dom": "^1.6.0",
"typescript": "~4.0.0"
},
"engines": {
"node": "12.* || 14.* || >= 16"
Expand Down

0 comments on commit 8fe8eae

Please sign in to comment.