Skip to content

Commit e0ddf3a

Browse files
authored
Update deps (#40)
* update deps * update deps * update deps
1 parent 0d523b8 commit e0ddf3a

File tree

5 files changed

+30
-31
lines changed

5 files changed

+30
-31
lines changed

hightable/package.json

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,24 +14,24 @@
1414
"typecheck": "tsc"
1515
},
1616
"dependencies": {
17-
"hightable": "0.20.1",
17+
"hightable": "0.20.2",
1818
"react": "19.2.0",
1919
"react-dom": "19.2.0",
20-
"react-router": "7.9.3"
20+
"react-router": "7.9.4"
2121
},
2222
"devDependencies": {
23-
"@types/react": "19.2.0",
24-
"@types/react-dom": "19.2.0",
23+
"@types/react": "19.2.2",
24+
"@types/react-dom": "19.2.2",
2525
"@vitejs/plugin-react": "5.0.4",
2626
"@vitest/coverage-v8": "3.2.4",
2727
"eslint": "9.37.0",
2828
"eslint-plugin-react": "7.37.5",
29-
"eslint-plugin-react-hooks": "6.1.1",
30-
"eslint-plugin-react-refresh": "0.4.23",
29+
"eslint-plugin-react-hooks": "7.0.0",
30+
"eslint-plugin-react-refresh": "0.4.24",
3131
"globals": "16.4.0",
3232
"typescript": "5.9.3",
33-
"typescript-eslint": "8.45.0",
34-
"vite": "7.1.9",
33+
"typescript-eslint": "8.46.1",
34+
"vite": "7.1.10",
3535
"vitest": "3.2.4"
3636
}
3737
}

hyparquet/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,26 +14,26 @@
1414
"typecheck": "tsc"
1515
},
1616
"dependencies": {
17-
"hightable": "0.20.1",
18-
"hyparquet": "1.19.0",
17+
"hightable": "0.20.2",
18+
"hyparquet": "1.20.0",
1919
"hyparquet-compressors": "1.1.1",
20-
"hyperparam": "0.3.23",
20+
"hyperparam": "0.3.25",
2121
"react": "19.2.0",
2222
"react-dom": "19.2.0"
2323
},
2424
"devDependencies": {
25-
"@types/react": "19.2.0",
26-
"@types/react-dom": "19.2.0",
25+
"@types/react": "19.2.2",
26+
"@types/react-dom": "19.2.2",
2727
"@vitejs/plugin-react": "5.0.4",
2828
"@vitest/coverage-v8": "3.2.4",
2929
"eslint": "9.37.0",
3030
"eslint-plugin-react": "7.37.5",
31-
"eslint-plugin-react-hooks": "6.1.1",
32-
"eslint-plugin-react-refresh": "0.4.23",
31+
"eslint-plugin-react-hooks": "7.0.0",
32+
"eslint-plugin-react-refresh": "0.4.24",
3333
"globals": "16.4.0",
3434
"typescript": "5.9.3",
35-
"typescript-eslint": "8.45.0",
36-
"vite": "7.1.9",
35+
"typescript-eslint": "8.46.1",
36+
"vite": "7.1.10",
3737
"vitest": "3.2.4"
3838
}
3939
}

hyparquet/src/Dropzone.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export default function Dropzone({ children, onFileDrop, onUrlDrop }: DropzonePr
4747
*/
4848
function handleFileSelect(e: React.ChangeEvent<HTMLInputElement>): void {
4949
const { files } = e.target
50-
if (!files || files.length !== 1) return
50+
if (files?.length !== 1) return
5151
onFileDrop(files[0])
5252
}
5353

icebird/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -14,25 +14,25 @@
1414
"typecheck": "tsc"
1515
},
1616
"dependencies": {
17-
"hightable": "0.20.1",
18-
"hyperparam": "0.3.23",
19-
"icebird": "0.3.0",
17+
"hightable": "0.20.2",
18+
"hyperparam": "0.3.25",
19+
"icebird": "0.3.1",
2020
"react": "19.2.0",
2121
"react-dom": "19.2.0"
2222
},
2323
"devDependencies": {
24-
"@types/react": "19.2.0",
25-
"@types/react-dom": "19.2.0",
24+
"@types/react": "19.2.2",
25+
"@types/react-dom": "19.2.2",
2626
"@vitejs/plugin-react": "5.0.4",
2727
"@vitest/coverage-v8": "3.2.4",
2828
"eslint": "9.37.0",
2929
"eslint-plugin-react": "7.37.5",
30-
"eslint-plugin-react-hooks": "6.1.1",
31-
"eslint-plugin-react-refresh": "0.4.23",
30+
"eslint-plugin-react-hooks": "7.0.0",
31+
"eslint-plugin-react-refresh": "0.4.24",
3232
"globals": "16.4.0",
3333
"typescript": "5.9.3",
34-
"typescript-eslint": "8.45.0",
35-
"vite": "7.1.9",
34+
"typescript-eslint": "8.46.1",
35+
"vite": "7.1.10",
3636
"vitest": "3.2.4"
3737
}
3838
}

icebird/src/App.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,9 @@ export default function App(): ReactNode {
4949
.catch(setUnknownError)
5050
}, [tableUrl, versions, setVersions, setUnknownError])
5151

52-
useEffect(() => {
53-
if (!version) return
54-
setPageProps(props => props ? { ...props, version } : undefined)
55-
}, [setPageProps, version])
52+
if (pageProps && version && pageProps.version !== version) {
53+
setPageProps({ ...pageProps, version })
54+
}
5655

5756
useEffect(() => {
5857
if (!tableUrl || !versions || !version) return

0 commit comments

Comments
 (0)