Skip to content

Commit bcce44f

Browse files
committed
Publish v0.4.14
1 parent 98dd498 commit bcce44f

4 files changed

Lines changed: 15 additions & 16 deletions

File tree

package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hyperparam",
3-
"version": "0.4.13",
3+
"version": "0.4.14",
44
"description": "Hyperparam CLI",
55
"author": "Hyperparam",
66
"homepage": "https://hyperparam.app",
@@ -56,13 +56,13 @@
5656
"watch:url": "NODE_ENV=development nodemon bin/cli.js https://hyperparam.blob.core.windows.net/hyperparam/starcoderdata-js-00000-of-00065.parquet"
5757
},
5858
"dependencies": {
59-
"@aws-sdk/client-s3": "3.1029.0",
60-
"@aws-sdk/credential-provider-node": "3.972.30",
59+
"@aws-sdk/client-s3": "3.1037.0",
60+
"@aws-sdk/credential-provider-node": "3.972.36",
6161
"hightable": "0.26.4",
6262
"hyparquet": "1.25.6",
6363
"hyparquet-compressors": "1.1.1",
6464
"icebird": "0.3.1",
65-
"squirreling": "0.12.3",
65+
"squirreling": "0.12.11",
6666
"ws": "8.20.0"
6767
},
6868
"devDependencies": {
@@ -73,23 +73,23 @@
7373
"@types/react-dom": "19.2.3",
7474
"@types/ws": "8.18.1",
7575
"@vitejs/plugin-react": "6.0.1",
76-
"@vitest/coverage-v8": "4.1.4",
76+
"@vitest/coverage-v8": "4.1.5",
7777
"eslint": "9.39.2",
7878
"eslint-plugin-react": "7.37.5",
79-
"eslint-plugin-react-hooks": "7.0.1",
79+
"eslint-plugin-react-hooks": "7.1.1",
8080
"eslint-plugin-react-refresh": "0.5.2",
8181
"eslint-plugin-storybook": "10.3.5",
8282
"globals": "17.5.0",
83-
"jsdom": "29.0.2",
83+
"jsdom": "29.1.0",
8484
"nodemon": "3.1.14",
8585
"npm-run-all": "4.1.5",
8686
"react": "19.2.5",
8787
"react-dom": "19.2.5",
8888
"storybook": "10.3.5",
89-
"typescript": "6.0.2",
90-
"typescript-eslint": "8.58.1",
91-
"vite": "8.0.8",
92-
"vitest": "4.1.4"
89+
"typescript": "6.0.3",
90+
"typescript-eslint": "8.59.0",
91+
"vite": "8.0.10",
92+
"vitest": "4.1.5"
9393
},
9494
"peerDependencies": {
9595
"react": "18.3.1 || ^19",

src/components/Cell/Cell.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,6 @@ export default function CellView({ source, row, col }: CellProps) {
5959
}
6060
}
6161

62-
setProgress(0)
6362
void loadCellData()
6463
}, [resolveUrl, requestInit, col, row])
6564

src/components/CellPanel/CellPanel.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export default function CellPanel({ df, row, col, setProgress, setError, onClose
6161
setValue(value)
6262
setError(undefined)
6363
} catch (error) {
64-
setError(error as Error)
64+
setError(error)
6565
} finally {
6666
setIsLoading(false)
6767
setProgress(1)

src/lib/sources/httpSource.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { DirSource, FileMetadata, FileSource, SourcePart } from './types.js'
1+
import type { DirSource, FileSource, SourcePart } from './types.js'
22
import { getFileName } from './utils.js'
33

44
interface S3ListItem {
@@ -119,10 +119,10 @@ export function getHttpSource(sourceId: string, options?: {requestInit?: Request
119119
lastModified: item.lastModified,
120120
sourceId: itemSourceId,
121121
kind: isDirectory ? 'directory' : 'file',
122-
} as FileMetadata
122+
}
123123
})
124124
),
125-
} as DirSource
125+
}
126126
}
127127

128128
return {

0 commit comments

Comments
 (0)