Skip to content

Commit

Permalink
Fix build issue in js cli
Browse files Browse the repository at this point in the history
  • Loading branch information
Polleps committed Jun 24, 2024
1 parent 1c3b2bb commit 783619f
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 37 deletions.
2 changes: 1 addition & 1 deletion browser/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
"prepublishOnly": "pnpm run build && pnpm run lint-fix",
"watch": "tsc --build --watch",
"start": "pnpm watch",
"tsc": "tsc --build",
"tsc": "pnpm exec tsc --build",
"typecheck": "pnpm exec tsc --noEmit"
},
"bin": {
Expand Down
3 changes: 3 additions & 0 deletions browser/data-browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,9 @@
"devDependencies": {
"@swc/plugin-styled-components": "^1.5.110",
"@types/prismjs": "^1.26.4",
"@types/react": "^18.2.34",
"@types/react-dom": "^18.2.14",
"@types/react-router-dom": "^5.3.3",
"@types/react-pdf": "^6.2.0",
"@types/react-window": "^1.8.7",
"@vitejs/plugin-react-swc": "^3.5.0",
Expand Down
4 changes: 0 additions & 4 deletions browser/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
"@types/chai": "^4.2.22",
"@types/jest": "^27.0.2",
"@types/node": "^20.11.5",
"@types/react": "^18.2.34",
"@types/react-dom": "^18.2.14",
"@types/react-router-dom": "^5.3.3",
"@typescript-eslint/eslint-plugin": "^7.8.0",
"@typescript-eslint/parser": "^7.8.0",
"chai": "^4.3.4",
Expand All @@ -22,7 +19,6 @@
"netlify-cli": "16.2.0",
"prettier": "3.2.5",
"prettier-plugin-jsdoc": "^1.3.0",
"react": "^18.2.0",
"ts-jest": "^29.0.1",
"typedoc": "^0.25.3",
"typedoc-plugin-missing-exports": "^2.1.0",
Expand Down
52 changes: 22 additions & 30 deletions browser/pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

9 changes: 7 additions & 2 deletions browser/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,17 @@
"@tomic/lib": "workspace:*"
},
"devDependencies": {
"typescript": "^5.4.5"
"typescript": "^5.4.5",
"@types/react": "^18.2.34",
"@types/react-dom": "^18.2.14",
"@types/react-router-dom": "^5.3.3"
},
"peerDependencies": {
"react": ">17.0.2"
},
"files": ["dist"],
"files": [
"dist"
],
"license": "MIT",
"name": "@tomic/react",
"main-dev": "src/index.ts",
Expand Down

0 comments on commit 783619f

Please sign in to comment.