Skip to content

Commit

Permalink
fix npx and workspaces
Browse files Browse the repository at this point in the history
  • Loading branch information
severo committed Dec 13, 2024
1 parent 981fd78 commit 3404a29
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/_common_jobs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/checkout@v4
- run: npm i
- run: npx tsc -w ${{ inputs.workspace }}
- run: npm run typecheck -w ${{ inputs.workspace }}

test:
runs-on: ubuntu-latest
Expand Down
3 changes: 2 additions & 1 deletion apps/hightable-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run --dir test"
"test": "vitest run --dir test",
"typecheck": "tsc"
},
"dependencies": {
"hightable": "0.7.2",
Expand Down
3 changes: 2 additions & 1 deletion apps/hyparquet-demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,8 @@
"build": "tsc -b && vite build",
"lint": "eslint .",
"preview": "vite preview",
"test": "vitest run --dir test"
"test": "vitest run --dir test",
"typecheck": "tsc"
},
"dependencies": {
"@hyparam/components": "0.1.11",
Expand Down
3 changes: 2 additions & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,8 @@
"prepublishOnly": "npm run build",
"serve": "node src/cli.js",
"url": "node src/cli.js https://hyperparam.blob.core.windows.net/hyperparam/starcoderdata-js-00000-of-00065.parquet",
"test": "vitest run --dir test"
"test": "vitest run --dir test",
"typecheck": "tsc"
},
"dependencies": {
"highlight.js": "11.10.0",
Expand Down
3 changes: 2 additions & 1 deletion packages/components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
"dev": "vite ./demo",
"lint": "eslint .",
"prepare": "npm run build",
"test": "vitest run"
"test": "vitest run",
"typecheck": "tsc"
},
"dependencies": {
"hightable": "0.7.2",
Expand Down

0 comments on commit 3404a29

Please sign in to comment.