Skip to content

Commit

Permalink
fix(deps): update react monorepo to v19 (major) (#254)
Browse files Browse the repository at this point in the history
* fix(deps): update react monorepo to v19

* fix: patch upgrade build issues

* fix: revert unneeded changes

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Kris Stern <[email protected]>
  • Loading branch information
renovate[bot] and krisstern authored Dec 22, 2024
1 parent 9ccf51c commit 6390a73
Show file tree
Hide file tree
Showing 6 changed files with 47 additions and 50 deletions.
2 changes: 1 addition & 1 deletion bundle-analysis.html

Large diffs are not rendered by default.

67 changes: 30 additions & 37 deletions package-lock.json

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

12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
"@jenkinsci/jenkins-io-components": "^1.30.1",
"@jenkinsci/jenkins-io-components": "^1.33.0",
"@mui/icons-material": "^6.0.0",
"dayjs": "^1.11.11",
"echarts": "^5.5.0",
"papaparse": "^5.4.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-force-graph-3d": "^1.24.3",
"react-router-dom": "^7.0.0",
"react-window": "^1.8.10",
Expand All @@ -31,8 +31,8 @@
"@eslint/js": "^9.8.0",
"@types/jsdom": "^21.1.7",
"@types/papaparse": "^5.3.14",
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/react": "^19.0.2",
"@types/react-dom": "^19.0.2",
"@types/react-window": "^1.8.8",
"@types/three": "^0.171.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
Expand All @@ -45,7 +45,7 @@
"globals": "^15.9.0",
"prettier": "3.4.2",
"rollup-plugin-visualizer": "^5.12.0",
"typescript": "^5.4.5",
"typescript": "^5.7.2",
"vite": "^6.0.0"
}
}
10 changes: 6 additions & 4 deletions src/custom-elements.d.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
declare namespace JSX {
interface IntrinsicElements {
'jio-navbar': unknown
'jio-footer': unknown
declare global {
declare namespace JSX {
interface IntrinsicElements {
'jio-navbar': unknown;
'jio-footer': unknown;
}
}
}
4 changes: 3 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"],
"include": [
"src/**/*.d.ts",
],
"references": [{ "path": "./tsconfig.node.json" }]
}
2 changes: 1 addition & 1 deletion tsconfig.node.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"allowSyntheticDefaultImports": true,
"strict": true
},
"include": ["vite.config.ts"]
"include": ["vite.config.ts", "src/**/*.ts", "src/**/*.d.ts"],
}

0 comments on commit 6390a73

Please sign in to comment.