Skip to content

Commit

Permalink
Specify typescript version in packages (rrweb-io#104)
Browse files Browse the repository at this point in the history
Hopefully fixes the build errors in
highlight/highlight#5239

Somehow these were getting resolved to the root workspace level
typescript version 5 in that PR.
  • Loading branch information
lewisl9029 authored May 5, 2023
1 parent af4f8c3 commit 5c062c3
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 4 deletions.
3 changes: 2 additions & 1 deletion packages/rrdom-nodejs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,8 @@
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-web-worker-loader": "^1.6.1",
"ts-jest": "27.1.5"
"ts-jest": "27.1.5",
"typescript": "^4.7.3"
},
"dependencies": {
"@highlight-run/rrdom": "workspace:*",
Expand Down
3 changes: 2 additions & 1 deletion packages/rrdom/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,8 @@
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.31.2",
"rollup-plugin-web-worker-loader": "^1.6.1",
"ts-jest": "27.1.5"
"ts-jest": "27.1.5",
"typescript": "^4.7.3"
},
"dependencies": {
"@highlight-run/rrweb-snapshot": "workspace:*"
Expand Down
3 changes: 2 additions & 1 deletion packages/rrweb-player/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@
"svelte": "^3.2.0",
"svelte-check": "^1.4.0",
"svelte-preprocess": "^4.0.0",
"tslib": "^2.0.0"
"tslib": "^2.0.0",
"typescript": "^4.7.3"
},
"dependencies": {
"@highlight-run/rrweb": "workspace:*",
Expand Down
3 changes: 2 additions & 1 deletion packages/web-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"vite": "^3.1.8",
"vite-plugin-web-extension": "^1.4.5",
"vite-plugin-zip-pack": "^1.0.5",
"webextension-polyfill": "^0.10.0"
"webextension-polyfill": "^0.10.0",
"typescript": "^4.7.3"
},
"dependencies": {
"@chakra-ui/react": "^2.3.4",
Expand Down

0 comments on commit 5c062c3

Please sign in to comment.