Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/_common_jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@ on:
required: true
type: string
jobs:
# lint:
# runs-on: ubuntu-latest
# defaults:
# run:
# working-directory: ${{ inputs.workspace }}
# steps:
# - uses: actions/checkout@v4
# - run: npm i
# - run: npm run lint
lint:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ${{ inputs.workspace }}
steps:
- uses: actions/checkout@v4
- run: npm i
- run: npm run lint

typecheck:
runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci_hightable_demo.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: hightable-demo
on:
workflow_dispatch:
push:
branches: ["master"]
pull_request:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/ci_hyparquet_demo.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
name: hyparquet-demo
on:
workflow_dispatch:
push:
branches: ["master"]
pull_request:
Expand Down
17 changes: 9 additions & 8 deletions hightable/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,23 +14,24 @@
"typecheck": "tsc"
},
"dependencies": {
"hightable": "0.11.0",
"hightable": "0.12.1",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-router": "7.2.0"
"react-router": "7.3.0"
},
"devDependencies": {
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "3.0.7",
"@vitest/coverage-v8": "3.0.8",
"eslint": "9.21.0",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.19",
"typescript": "5.7.3",
"typescript-eslint": "8.25.0",
"vite": "6.2.0",
"vitest": "3.0.7"
"globals": "16.0.0",
"typescript": "5.8.2",
"typescript-eslint": "8.26.0",
"vite": "6.2.1",
"vitest": "3.0.8"
}
}
2 changes: 1 addition & 1 deletion hightable/src/data.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const header = ['ID', 'Name', 'Age', 'UUID', 'Text', 'JSON']
const mockData = {
header,
numRows: 10000,
rows({start, end}: {start: number, end: number}) {
rows({ start, end }: { start: number, end: number }) {
const arr: AsyncRow[] = []
for (let i = start; i < end; i++) {
const rand = Math.abs(Math.sin(i + 1))
Expand Down
19 changes: 10 additions & 9 deletions hyparquet/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"typecheck": "tsc"
},
"dependencies": {
"@hyparam/components": "0.1.19",
"hightable": "0.11.0",
"hyparquet": "1.8.4",
"hyperparam": "0.2.24",
"hightable": "0.12.1",
"hyparquet": "1.8.6",
"hyparquet-compressors": "1.0.0",
"react": "18.3.1",
"react-dom": "18.3.1"
Expand All @@ -25,14 +25,15 @@
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@vitejs/plugin-react": "4.3.4",
"@vitest/coverage-v8": "3.0.7",
"@vitest/coverage-v8": "3.0.8",
"eslint": "9.21.0",
"eslint-plugin-react": "7.37.4",
"eslint-plugin-react-hooks": "5.1.0",
"eslint-plugin-react-hooks": "5.2.0",
"eslint-plugin-react-refresh": "0.4.19",
"typescript": "5.7.3",
"typescript-eslint": "8.25.0",
"vite": "6.2.0",
"vitest": "3.0.7"
"globals": "16.0.0",
"typescript": "5.8.2",
"typescript-eslint": "8.26.0",
"vite": "6.2.1",
"vitest": "3.0.8"
}
}
2 changes: 1 addition & 1 deletion hyparquet/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import { ReactNode } from 'react'
import Page, { PageProps } from './Page.js'
import Welcome from './Welcome.js'

import { AsyncBufferFrom, asyncBufferFrom, parquetDataFrame } from '@hyparam/components'
import { rowCache } from 'hightable'
import { byteLengthFromUrl, parquetMetadataAsync } from 'hyparquet'
import { AsyncBufferFrom, asyncBufferFrom, parquetDataFrame } from 'hyperparam'
import { useCallback, useEffect, useState } from 'react'
import Dropzone from './Dropzone.js'
import Layout from './Layout.js'
Expand Down
2 changes: 1 addition & 1 deletion hyparquet/src/Dropdown.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { cn } from '@hyparam/components'
import { cn } from 'hyperparam'
import { ReactNode, useEffect, useRef, useState } from 'react'

interface DropdownProps {
Expand Down
2 changes: 1 addition & 1 deletion hyparquet/src/Layout.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ErrorBar, cn } from '@hyparam/components'
import { ErrorBar, cn } from 'hyperparam'
import { ReactNode, useEffect } from 'react'

interface LayoutProps {
Expand Down