Skip to content

Commit

Permalink
Wow
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Sep 16, 2024
1 parent cde5dc8 commit b7bc672
Show file tree
Hide file tree
Showing 7 changed files with 1,075 additions and 2,547 deletions.
2 changes: 1 addition & 1 deletion app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"react": "^18.0.0",
"react-bootstrap": "^2.8.0",
"react-dom": "^18.0.0",
"zustand": "^4.5.2"
"zustand": "^5.0.0-rc.2"
},
"devDependencies": {
"@types/react": "^18.2.15",
Expand Down
1 change: 0 additions & 1 deletion app/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ import './App.css'
function App() {
const [exportSVG, setExportSVG] = useState(0)
const [redraw, setRedraw] = useState(0)
const store = useAppStore()

useEffect(
() =>
Expand Down
5 changes: 4 additions & 1 deletion app/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,8 @@
"noFallthroughCasesInSwitch": true
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
"exclude": ["dist"],
"references": [
{ "path": "./tsconfig.node.json" }
]
}
1 change: 0 additions & 1 deletion lib/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@
"access": "public"
},
"devDependencies": {
"@chromatic-com/storybook": "^1.5.0",
"@storybook/addon-essentials": "^8.1.6",
"@storybook/addon-interactions": "^8.1.6",
"@storybook/addon-links": "^8.1.6",
Expand Down
14 changes: 6 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,34 +1,32 @@
{
"private": true,
"scripts": {
"lint": "eslint --report-unused-disable-directives --max-warnings 0 ."
"lint": "eslint --report-unused-disable-directives --max-warnings 0"
},
"workspaces": [
"lib",
"app"
],
"devDependencies": {
"@eslint/compat": "^1.1.1",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.7.0",
"@types/d3-color": "^3.1.0",
"@types/d3-drag": "^3.0.3",
"@types/d3-selection": "^3.0.6",
"@types/file-saver": "^2.0.5",
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^9.7.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-hooks": "next",
"eslint-plugin-react-refresh": "^0.4.3",
"eslint-plugin-unicorn": "^54.0.0",
"eslint-plugin-unicorn": "^55.0.0",
"eslint-plugin-valtio": "^0.6.3",
"globals": "^15.8.0",
"prettier": "^3.0.3",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"rimraf": "^6.0.1",
"typescript": "^5.2.2",
"vite": "^5.3.4"
}
Expand Down
7 changes: 6 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,15 @@
"declaration": true,
"moduleResolution": "node",
"sourceMap": true,
"skipLibCheck": true,
"strict": true,
"noImplicitAny": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true
}
},
"exclude": [
"**/build/",
"**/dist/"
]
}
3,592 changes: 1,058 additions & 2,534 deletions yarn.lock

Large diffs are not rendered by default.

0 comments on commit b7bc672

Please sign in to comment.