Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 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
2 changes: 1 addition & 1 deletion bin/tools/parquetSql.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { asyncBufferFromFile, asyncBufferFromUrl, parquetMetadataAsync } from 'hyparquet'
import { compressors } from 'hyparquet-compressors'
import { collect, executeSql } from 'squirreling'
import { parquetDataSource } from '../../src/index.js'
import { parquetDataSource } from 'hyperparam'
import { markdownTable } from './markdownTable.js'

const maxRows = 100
Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@
"preserve": "npm run build",
"storybook": "storybook dev -p 6006",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"typecheck": "run-s build typecheck-once-built",
"typecheck-once-built": "tsc --noEmit",
"url": "run-p -l watch:ts watch:cli watch:url",
"preurl": "npm run build",
"watch:cli": "vite build --watch",
Expand Down
Loading