Skip to content

Commit

Permalink
Merge pull request #170 from jbrunton/upgrade-node-typescript
Browse files Browse the repository at this point in the history
chore: upgrade typescript and node
  • Loading branch information
jbrunton authored Aug 31, 2024
2 parents 102bd1c + 5b69d0c commit c944bfb
Show file tree
Hide file tree
Showing 7 changed files with 702 additions and 692 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,6 @@ jobs:
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies
run: pnpm install
- name: Install Playwright Browsers
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
lts/hydrogen
lts/iron
8 changes: 4 additions & 4 deletions client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"version": "0.0.0",
"type": "module",
"engines": {
"node": "18.x"
"node": "20.x"
},
"packageManager": "[email protected]",
"scripts": {
Expand All @@ -19,7 +19,7 @@
},
"dependencies": {
"@auth0/auth0-react": "1.12.0",
"@chakra-ui/react": "2.4.6",
"@chakra-ui/react": "2.8.2",
"@emotion/react": "11.10.5",
"@emotion/styled": "11.10.5",
"@tanstack/react-query": "5.53.1",
Expand Down Expand Up @@ -49,7 +49,7 @@
"@types/react-dom": "^18.0.9",
"@typescript-eslint/eslint-plugin": "5.47.1",
"@typescript-eslint/parser": "5.47.1",
"@vitejs/plugin-react": "^3.0.0",
"@vitejs/plugin-react": "4.3.1",
"eslint": "8.30.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-prettier": "4.2.1",
Expand All @@ -58,7 +58,7 @@
"jsdom": "22.1.0",
"msw": "1.3.2",
"prettier": "2.8.1",
"typescript": "^4.9.3",
"typescript": "5.5.4",
"vite": "^4.0.0",
"vitest": "0.33.0"
}
Expand Down
2 changes: 1 addition & 1 deletion client/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"types": ["vitest/globals", "@testing-library/jest-dom"]
"types": ["vitest/globals", "@testing-library/jest-dom", "@emotion/react/types/css-prop"]
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"engines": {
"node": "18.x"
"node": "20.x"
},
"name": "chat-demo",
"packageManager": "[email protected]",
Expand Down
1,373 changes: 693 additions & 680 deletions pnpm-lock.yaml

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions services/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"private": true,
"license": "UNLICENSED",
"engines": {
"node": "18.x"
"node": "20.x"
},
"packageManager": "[email protected]",
"scripts": {
Expand Down Expand Up @@ -100,6 +100,6 @@
"ts-node": "^10.0.0",
"tsconfig-paths": "4.1.0",
"typedoc": "0.26.5",
"typescript": "^5.0.0"
"typescript": "5.5.4"
}
}

0 comments on commit c944bfb

Please sign in to comment.