mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Update dependency typescript to v5.5.4 (#91678)
* Update dependency typescript to v5.5.4 * fix missing typeof --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Ashley Harrison <ashley.harrison@grafana.com>
This commit is contained in:
parent
7c8184d5bf
commit
d9812153dd
@ -231,7 +231,7 @@
|
||||
"tracelib": "1.0.1",
|
||||
"ts-jest": "29.2.4",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5",
|
||||
"typescript": "5.5.4",
|
||||
"webpack": "5.91.0",
|
||||
"webpack-assets-manifest": "^5.1.0",
|
||||
"webpack-bundle-analyzer": "4.10.2",
|
||||
|
@ -79,7 +79,7 @@
|
||||
"rollup-plugin-dts": "^5.0.0",
|
||||
"rollup-plugin-esbuild": "5.0.0",
|
||||
"rollup-plugin-node-externals": "^5.0.0",
|
||||
"typescript": "5.4.5"
|
||||
"typescript": "5.5.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^18.0.0",
|
||||
|
@ -51,6 +51,6 @@
|
||||
"dependencies": {
|
||||
"@grafana/tsconfig": "^2.0.0",
|
||||
"tslib": "2.6.3",
|
||||
"typescript": "5.4.5"
|
||||
"typescript": "5.5.4"
|
||||
}
|
||||
}
|
||||
|
@ -82,7 +82,7 @@
|
||||
"rollup-plugin-node-externals": "^5.0.0",
|
||||
"ts-jest": "29.2.4",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5"
|
||||
"typescript": "5.5.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^18.0.0",
|
||||
|
@ -58,7 +58,7 @@
|
||||
"rollup-plugin-esbuild": "5.0.0",
|
||||
"rollup-plugin-node-externals": "5.0.0",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5"
|
||||
"typescript": "5.5.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^17.0.0 || ^18.0.0",
|
||||
|
@ -44,7 +44,7 @@
|
||||
"react": "18.2.0",
|
||||
"ts-jest": "29.2.4",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5"
|
||||
"typescript": "5.5.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^18.0.0",
|
||||
|
@ -17,7 +17,7 @@
|
||||
"glob": "10.4.1",
|
||||
"replace-in-file-webpack-plugin": "1.0.6",
|
||||
"swc-loader": "0.2.6",
|
||||
"typescript": "5.4.5",
|
||||
"typescript": "5.5.4",
|
||||
"webpack": "5.91.0"
|
||||
},
|
||||
"packageManager": "yarn@4.4.0"
|
||||
|
@ -136,7 +136,7 @@
|
||||
"style-loader": "4.0.0",
|
||||
"testing-library-selector": "0.3.1",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5",
|
||||
"typescript": "5.5.4",
|
||||
"webpack": "5.91.0",
|
||||
"webpack-cli": "5.1.4"
|
||||
},
|
||||
|
@ -71,7 +71,7 @@
|
||||
"rollup-plugin-esbuild": "5.0.0",
|
||||
"rollup-plugin-node-externals": "^5.0.0",
|
||||
"rollup-plugin-sourcemaps": "0.6.3",
|
||||
"typescript": "5.4.5"
|
||||
"typescript": "5.5.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^18.0.0",
|
||||
|
@ -45,7 +45,7 @@
|
||||
"rollup-plugin-dts": "^5.0.0",
|
||||
"rollup-plugin-esbuild": "5.0.0",
|
||||
"rollup-plugin-node-externals": "^5.0.0",
|
||||
"typescript": "5.4.5"
|
||||
"typescript": "5.5.4"
|
||||
},
|
||||
"dependencies": {
|
||||
"tslib": "2.6.3"
|
||||
|
@ -52,7 +52,7 @@
|
||||
"jest": "^29.6.4",
|
||||
"ts-jest": "29.2.4",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5"
|
||||
"typescript": "5.5.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@grafana/runtime": "10.4.0-pre"
|
||||
|
@ -185,7 +185,7 @@
|
||||
"storybook": "^8.1.6",
|
||||
"storybook-dark-mode": "^4.0.1",
|
||||
"style-loader": "4.0.0",
|
||||
"typescript": "5.4.5",
|
||||
"typescript": "5.5.4",
|
||||
"webpack": "5.91.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -124,7 +124,7 @@ function callTemplate(template: ProcessedTemplate, data: any) {
|
||||
export function computeTraceLink(linkPatterns: ProcessedLinkPattern[], trace: Trace) {
|
||||
const result: TLinksRV = [];
|
||||
const validKeys = (Object.keys(trace) as Array<keyof Trace>).filter(
|
||||
(key) => typeof trace[key] === 'string' || trace[key] === 'number'
|
||||
(key) => typeof trace[key] === 'string' || typeof trace[key] === 'number'
|
||||
);
|
||||
|
||||
linkPatterns
|
||||
|
@ -39,7 +39,7 @@
|
||||
"@types/testing-library__jest-dom": "5.14.9",
|
||||
"react-select-event": "5.5.1",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5",
|
||||
"typescript": "5.5.4",
|
||||
"webpack": "5.91.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -43,7 +43,7 @@
|
||||
"react-select-event": "5.5.1",
|
||||
"react-test-renderer": "18.2.0",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5",
|
||||
"typescript": "5.5.4",
|
||||
"webpack": "5.91.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -26,7 +26,7 @@
|
||||
"@types/react": "18.3.3",
|
||||
"@types/testing-library__jest-dom": "5.14.9",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5",
|
||||
"typescript": "5.5.4",
|
||||
"webpack": "5.91.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -36,7 +36,7 @@
|
||||
"jest": "29.7.0",
|
||||
"style-loader": "4.0.0",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5",
|
||||
"typescript": "5.5.4",
|
||||
"webpack": "5.91.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -36,7 +36,7 @@
|
||||
"@types/testing-library__jest-dom": "5.14.9",
|
||||
"@types/uuid": "9.0.8",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5",
|
||||
"typescript": "5.5.4",
|
||||
"webpack": "5.91.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -37,7 +37,7 @@
|
||||
"@types/react-window": "1.8.8",
|
||||
"@types/uuid": "9.0.8",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5",
|
||||
"typescript": "5.5.4",
|
||||
"webpack": "5.91.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -26,7 +26,7 @@
|
||||
"@types/react": "18.3.3",
|
||||
"@types/testing-library__jest-dom": "5.14.9",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5",
|
||||
"typescript": "5.5.4",
|
||||
"webpack": "5.91.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -27,7 +27,7 @@
|
||||
"@types/react": "18.3.3",
|
||||
"@types/react-dom": "18.2.25",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5",
|
||||
"typescript": "5.5.4",
|
||||
"webpack": "5.91.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -55,7 +55,7 @@
|
||||
"glob": "10.4.1",
|
||||
"react-select-event": "5.5.1",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5",
|
||||
"typescript": "5.5.4",
|
||||
"webpack": "5.91.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -29,7 +29,7 @@
|
||||
"@types/react": "18.3.3",
|
||||
"@types/react-dom": "18.2.25",
|
||||
"ts-node": "10.9.2",
|
||||
"typescript": "5.4.5",
|
||||
"typescript": "5.5.4",
|
||||
"webpack": "5.91.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
68
yarn.lock
68
yarn.lock
@ -2792,7 +2792,7 @@ __metadata:
|
||||
rxjs: "npm:7.8.1"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
webpack: "npm:5.91.0"
|
||||
peerDependencies:
|
||||
"@grafana/runtime": "*"
|
||||
@ -2823,7 +2823,7 @@ __metadata:
|
||||
rxjs: "npm:7.8.1"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
webpack: "npm:5.91.0"
|
||||
peerDependencies:
|
||||
"@grafana/runtime": "*"
|
||||
@ -2864,7 +2864,7 @@ __metadata:
|
||||
style-loader: "npm:4.0.0"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
webpack: "npm:5.91.0"
|
||||
peerDependencies:
|
||||
"@grafana/runtime": "*"
|
||||
@ -2904,7 +2904,7 @@ __metadata:
|
||||
rxjs: "npm:7.8.1"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
uuid: "npm:9.0.1"
|
||||
webpack: "npm:5.91.0"
|
||||
peerDependencies:
|
||||
@ -2946,7 +2946,7 @@ __metadata:
|
||||
stream-browserify: "npm:3.0.0"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
uuid: "npm:9.0.1"
|
||||
webpack: "npm:5.91.0"
|
||||
peerDependencies:
|
||||
@ -2978,7 +2978,7 @@ __metadata:
|
||||
rxjs: "npm:7.8.1"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
webpack: "npm:5.91.0"
|
||||
peerDependencies:
|
||||
"@grafana/runtime": "*"
|
||||
@ -3010,7 +3010,7 @@ __metadata:
|
||||
rxjs: "npm:7.8.1"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
webpack: "npm:5.91.0"
|
||||
peerDependencies:
|
||||
"@grafana/runtime": "*"
|
||||
@ -3058,7 +3058,7 @@ __metadata:
|
||||
rxjs: "npm:7.8.1"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
webpack: "npm:5.91.0"
|
||||
peerDependencies:
|
||||
"@grafana/runtime": "*"
|
||||
@ -3117,7 +3117,7 @@ __metadata:
|
||||
string_decoder: "npm:1.3.0"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
uuid: "npm:9.0.1"
|
||||
webpack: "npm:5.91.0"
|
||||
peerDependencies:
|
||||
@ -3152,7 +3152,7 @@ __metadata:
|
||||
rxjs: "npm:7.8.1"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
webpack: "npm:5.91.0"
|
||||
peerDependencies:
|
||||
"@grafana/runtime": "*"
|
||||
@ -3231,7 +3231,7 @@ __metadata:
|
||||
string-hash: "npm:^1.1.3"
|
||||
tinycolor2: "npm:1.6.0"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
uplot: "npm:1.6.30"
|
||||
xss: "npm:^1.0.14"
|
||||
peerDependencies:
|
||||
@ -3254,7 +3254,7 @@ __metadata:
|
||||
rollup-plugin-esbuild: "npm:5.0.0"
|
||||
rollup-plugin-node-externals: "npm:^5.0.0"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@ -3436,7 +3436,7 @@ __metadata:
|
||||
ts-jest: "npm:29.2.4"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
peerDependencies:
|
||||
react: ^18.0.0
|
||||
react-dom: ^18.0.0
|
||||
@ -3511,7 +3511,7 @@ __metadata:
|
||||
ts-jest: "npm:29.2.4"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
peerDependencies:
|
||||
react: ^18.0.0
|
||||
react-dom: ^18.0.0
|
||||
@ -3533,7 +3533,7 @@ __metadata:
|
||||
replace-in-file-webpack-plugin: "npm:1.0.6"
|
||||
swc-loader: "npm:0.2.6"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
webpack: "npm:5.91.0"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
@ -3651,7 +3651,7 @@ __metadata:
|
||||
testing-library-selector: "npm:0.3.1"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
uuid: "npm:9.0.1"
|
||||
webpack: "npm:5.91.0"
|
||||
webpack-cli: "npm:5.1.4"
|
||||
@ -3697,7 +3697,7 @@ __metadata:
|
||||
rollup-plugin-sourcemaps: "npm:0.6.3"
|
||||
rxjs: "npm:7.8.1"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
peerDependencies:
|
||||
react: ^18.0.0
|
||||
react-dom: ^18.0.0
|
||||
@ -3732,7 +3732,7 @@ __metadata:
|
||||
rollup-plugin-esbuild: "npm:5.0.0"
|
||||
rollup-plugin-node-externals: "npm:5.0.0"
|
||||
ts-node: "npm:10.9.2"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
peerDependencies:
|
||||
react: ^17.0.0 || ^18.0.0
|
||||
react-dom: ^17.0.0 || ^18.0.0
|
||||
@ -3774,7 +3774,7 @@ __metadata:
|
||||
rollup-plugin-esbuild: "npm:5.0.0"
|
||||
rollup-plugin-node-externals: "npm:^5.0.0"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
@ -3817,7 +3817,7 @@ __metadata:
|
||||
ts-jest: "npm:29.2.4"
|
||||
ts-node: "npm:10.9.2"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
uuid: "npm:9.0.1"
|
||||
peerDependencies:
|
||||
"@grafana/runtime": 10.4.0-pre
|
||||
@ -3976,7 +3976,7 @@ __metadata:
|
||||
style-loader: "npm:4.0.0"
|
||||
tinycolor2: "npm:1.6.0"
|
||||
tslib: "npm:2.6.3"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
uplot: "npm:1.6.30"
|
||||
uuid: "npm:9.0.1"
|
||||
webpack: "npm:5.91.0"
|
||||
@ -18454,7 +18454,7 @@ __metadata:
|
||||
tslib: "npm:2.6.3"
|
||||
tween-functions: "npm:^1.2.0"
|
||||
type-fest: "npm:^4.18.2"
|
||||
typescript: "npm:5.4.5"
|
||||
typescript: "npm:5.5.4"
|
||||
uplot: "npm:1.6.30"
|
||||
uuid: "npm:9.0.1"
|
||||
visjs-network: "npm:4.25.0"
|
||||
@ -31108,7 +31108,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@npm:5.4.5, typescript@npm:>=2.7, typescript@npm:>=3 < 6, typescript@npm:^5.0.0, typescript@npm:^5.0.4, typescript@npm:^5.2.2":
|
||||
"typescript@npm:5.4.5":
|
||||
version: 5.4.5
|
||||
resolution: "typescript@npm:5.4.5"
|
||||
bin:
|
||||
@ -31118,6 +31118,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@npm:5.5.4, typescript@npm:>=2.7, typescript@npm:>=3 < 6, typescript@npm:^5.0.0, typescript@npm:^5.0.4, typescript@npm:^5.2.2":
|
||||
version: 5.5.4
|
||||
resolution: "typescript@npm:5.5.4"
|
||||
bin:
|
||||
tsc: bin/tsc
|
||||
tsserver: bin/tsserver
|
||||
checksum: 10/1689ccafef894825481fc3d856b4834ba3cc185a9c2878f3c76a9a1ef81af04194849840f3c69e7961e2312771471bb3b460ca92561e1d87599b26c37d0ffb6f
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@patch:typescript@npm%3A5.2.2#optional!builtin<compat/typescript>":
|
||||
version: 5.2.2
|
||||
resolution: "typescript@patch:typescript@npm%3A5.2.2#optional!builtin<compat/typescript>::version=5.2.2&hash=f3b441"
|
||||
@ -31128,7 +31138,7 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@patch:typescript@npm%3A5.4.5#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A>=2.7#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A>=3 < 6#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A^5.0.0#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A^5.0.4#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A^5.2.2#optional!builtin<compat/typescript>":
|
||||
"typescript@patch:typescript@npm%3A5.4.5#optional!builtin<compat/typescript>":
|
||||
version: 5.4.5
|
||||
resolution: "typescript@patch:typescript@npm%3A5.4.5#optional!builtin<compat/typescript>::version=5.4.5&hash=5adc0c"
|
||||
bin:
|
||||
@ -31138,6 +31148,16 @@ __metadata:
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"typescript@patch:typescript@npm%3A5.5.4#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A>=2.7#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A>=3 < 6#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A^5.0.0#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A^5.0.4#optional!builtin<compat/typescript>, typescript@patch:typescript@npm%3A^5.2.2#optional!builtin<compat/typescript>":
|
||||
version: 5.5.4
|
||||
resolution: "typescript@patch:typescript@npm%3A5.5.4#optional!builtin<compat/typescript>::version=5.5.4&hash=379a07"
|
||||
bin:
|
||||
tsc: bin/tsc
|
||||
tsserver: bin/tsserver
|
||||
checksum: 10/746fdd0865c5ce4f15e494c57ede03a9e12ede59cfdb40da3a281807853fe63b00ef1c912d7222143499aa82f18b8b472baa1830df8804746d09b55f6cf5b1cc
|
||||
languageName: node
|
||||
linkType: hard
|
||||
|
||||
"ua-parser-js@npm:^1.0.32":
|
||||
version: 1.0.33
|
||||
resolution: "ua-parser-js@npm:1.0.33"
|
||||
|
Loading…
Reference in New Issue
Block a user