Skip to content

Commit

Permalink
Update dependencies (#863)
Browse files Browse the repository at this point in the history
* remove unused action from function-plot reducer

* update pnpm to 8.15.7
  • Loading branch information
dagda1 authored Apr 14, 2024
1 parent e59df9c commit f8374ed
Show file tree
Hide file tree
Showing 17 changed files with 1,559 additions and 1,382 deletions.
13 changes: 13 additions & 0 deletions .changeset/forty-knives-compete.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
"@cutting/react-hook-form-components": patch
"@cutting/use-get-parent-size": patch
"@cutting/component-library": patch
"@cutting/eslint-config": patch
"@cutting/devtools": patch
"@cutting/assert": patch
"@cutting/hooks": patch
"@cutting/util": patch
"@cutting/svg": patch
---

update dependencies and pnpm to 8.15.7
2 changes: 1 addition & 1 deletion .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
- uses: pnpm/[email protected]
with:
version: 8.15.5
version: 8.15.7

- name: Checkout Repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/validate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
steps:
- uses: pnpm/[email protected]
with:
version: 8.15.5
version: 8.15.7

- name: Checkout Repo
uses: actions/checkout@v4
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
- uses: pnpm/[email protected]
id: install_pnpm
with:
version: 8.15.5
version: 8.15.7

- name: echo npm dest
run: echo "pnpm installed in ${{steps.install_pnpm.outputs.dest}}"
Expand Down
10 changes: 5 additions & 5 deletions apps/website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,19 +59,19 @@
"immer": "10.0.4",
"mathjs": "12.4.1",
"nocache": "4.0.0",
"puppeteer": "^22.6.1",
"puppeteer": "^22.6.4",
"rc-slider": "^10.5.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-helmet": "6.1.0",
"react-hook-form": "7.51.2",
"react-hook-form": "7.51.3",
"react-is": "^18.2.0",
"react-router": "6.22.3",
"react-router-dom": "6.22.3",
"referrer-policy": "1.2.0",
"regression": "2.0.1",
"serve-static": "1.15.0",
"ts-pattern": "5.0.8",
"ts-pattern": "5.1.1",
"url-join": "5.0.0"
},
"devDependencies": {
Expand All @@ -83,7 +83,7 @@
"@mdx-js/mdx": "3.0.1",
"@mdx-js/react": "3.0.1",
"@mdx-js/rollup": "3.0.1",
"@testing-library/react": "14.2.2",
"@testing-library/react": "15.0.2",
"@types/compression": "1.7.5",
"@types/csurf": "1.11.5",
"@types/d3": "7.4.3",
Expand All @@ -101,7 +101,7 @@
"@types/url-join": "4.0.3",
"@vanilla-extract/vite-plugin": "4.0.7",
"copyfiles": "2.4.1",
"eslint": "8.57.0",
"eslint": "^8.57.0",
"install": "0.13.0",
"nodemon": "3.1.0",
"rimraf": "5.0.5",
Expand Down
10 changes: 0 additions & 10 deletions apps/website/src/components/FunctionPlot/reducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,6 @@ type FunctionActions =
payload: {
expression: string;
};
}
| {
type: 'SET_RANGE';
payload: {
minX: number;
maxX: number;
};
};

export const initialState = {
Expand Down Expand Up @@ -115,8 +108,5 @@ export const reducer: Reducer<State, FunctionActions> = produce((state, action)
.with({ type: 'SET_EXPRESSION' }, ({ payload }) => {
state.expression = payload.expression;
})
.with({ type: 'SET_RANGE' }, ({ payload }) => {
state.range = payload;
})
.otherwise(() => state);
});
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@
"vitest": "1.4.0",
"whatwg-fetch": "3.6.20"
},
"packageManager": "[email protected].5",
"packageManager": "[email protected].7",
"volta": {
"node": "18.12.0",
"npm": "9.9.3",
"pnpm": "8.15.5"
"pnpm": "8.15.7"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,mjs,cjs}": [
Expand Down
6 changes: 3 additions & 3 deletions packages/assert/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@
"@cutting/eslint-config": "workspace:*",
"@cutting/tsconfig": "workspace:*",
"@cutting/useful-types": "workspace:*",
"@typescript-eslint/parser": "7.4.0",
"@typescript-eslint/eslint-plugin": "7.4.0",
"eslint": "8.57.0",
"@typescript-eslint/parser": "7.6.0",
"@typescript-eslint/eslint-plugin": "7.6.0",
"eslint": "^8.57.0",
"typescript": "5.4.5"
},
"volta": {
Expand Down
6 changes: 3 additions & 3 deletions packages/component-library/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"@cutting/util": "workspace:*",
"@cutting/assert": "workspace:*",
"classnames": "^2.5.1",
"dedent": "1.5.1",
"dedent": "1.5.3",
"deepmerge": "4.3.1",
"@floating-ui/react": "^0.26.12",
"react-is": "^18.2.0"
Expand All @@ -41,7 +41,7 @@
"@storybook/builder-webpack5": "8.0.8",
"@storybook/manager-webpack5": "6.5.16",
"@storybook/react": "8.0.8",
"@testing-library/react": "14.2.2",
"@testing-library/react": "15.0.2",
"@types/babel__core": "7.20.5",
"@types/dedent": "0.7.2",
"@types/mdx-js__react": "1.5.8",
Expand All @@ -55,7 +55,7 @@
"autoprefixer": "10.4.19",
"csstype": "3.1.3",
"esbuild": "0.20.2",
"eslint": "8.57.0",
"eslint": "^8.57.0",
"node-fetch": "3.3.2",
"postcss": "8.4.38",
"react": "18.2.0",
Expand Down
13 changes: 6 additions & 7 deletions packages/devtools/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
"@rollup/plugin-node-resolve": "15.2.3",
"@rollup/plugin-terser": "0.4.4",
"@rollup/pluginutils": "5.1.0",
"@testing-library/dom": "9.3.4",
"@testing-library/dom": "10.0.0",
"@types/bluebird": "3.5.42",
"@vanilla-extract/esbuild-plugin": "2.3.5",
"assert-ts": "^0.3.4",
Expand All @@ -51,9 +51,8 @@
"cross-fetch": "^4.0.0",
"dotenv": "16.4.5",
"esbuild": "0.20.2",
"eslint": "8.57.0",
"fs-extra": "11.2.0",
"inquirer": "9.2.17",
"inquirer": "9.2.18",
"papaparse": "5.4.1",
"postcss": "8.4.38",
"postcss-import": "16.1.0",
Expand All @@ -62,7 +61,7 @@
"raf": "3.4.1",
"react": "18.2.0",
"react-dom": "18.2.0",
"rollup": "4.13.2",
"rollup": "4.14.2",
"rollup-plugin-analyzer": "^4.0.0",
"rollup-plugin-inject-process-env": "1.3.1",
"rollup-plugin-node-externals": "7.1.1",
Expand Down Expand Up @@ -97,11 +96,11 @@
"@types/postcss-import": "14.0.3",
"@types/rollup-plugin-size-snapshot": "0.10.5",
"@types/validate-npm-package-name": "4.0.2",
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"deepmerge": "4.3.1",
"esbuild-node-externals": "1.13.0",
"eslint": "8.57.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.3",
Expand Down
12 changes: 6 additions & 6 deletions packages/eslint-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@
"react"
],
"dependencies": {
"@typescript-eslint/eslint-plugin": "7.4.0",
"@typescript-eslint/parser": "7.4.0",
"eslint": "8.57.0",
"@typescript-eslint/eslint-plugin": "7.6.0",
"@typescript-eslint/parser": "7.6.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsx-a11y": "6.8.0",
"eslint-plugin-prettier": "5.1.3",
Expand All @@ -33,9 +33,9 @@
"typescript": "5.4.5"
},
"peerDependencies": {
"@typescript-eslint/eslint-plugin": ">= 7.4.0",
"@typescript-eslint/parser": ">= 7.4.0",
"eslint": ">= 8.57.0",
"@typescript-eslint/eslint-plugin": ">= 7.6.0",
"@typescript-eslint/parser": ">= 7.6.0",
"eslint": ">= 8.5.7",
"eslint-config-prettier": ">= 9.1.0",
"eslint-plugin-jsx-a11y": ">= 6.8.0",
"eslint-plugin-prettier": ">= 5.1.3",
Expand Down
4 changes: 2 additions & 2 deletions packages/hooks/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,12 +29,12 @@
"@cutting/eslint-config": "workspace:*",
"@cutting/tsconfig": "workspace:*",
"@cutting/useful-types": "workspace:*",
"@testing-library/react": "14.2.2",
"@testing-library/react": "15.0.2",
"@testing-library/react-hooks": "8.0.1",
"@types/react": "18.2.78",
"@types/react-dom": "18.2.25",
"@vanilla-extract/css": "^1.14.2",
"eslint": "8.57.0",
"eslint": "^8.57.0",
"history": "^5.3.0",
"react": "18.2.0",
"react-dom": "18.2.0",
Expand Down
6 changes: 3 additions & 3 deletions packages/react-hook-form-components/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"@cutting/component-library": "workspace:*",
"@cutting/util": "workspace:*",
"@cutting/assert": "workspace:*",
"react-hook-form": "7.51.2",
"react-hook-form": "7.51.3",
"react-is": "^18.2.0",
"react-calendly": "^4.3.0"
},
Expand All @@ -40,11 +40,11 @@
"@types/react": "18.2.78",
"@types/react-dom": "18.2.25",
"@vanilla-extract/css": "^1.14.2",
"eslint": "8.57.0",
"eslint": "^8.57.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"react-syntax-highlighter": "15.5.0",
"@testing-library/react": "14.2.2",
"@testing-library/react": "15.0.2",
"typescript": "5.4.5"
},
"peerDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions packages/svg/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
"@cutting/eslint-config": "workspace:*",
"@cutting/tsconfig": "workspace:*",
"@cutting/useful-types": "workspace:*",
"@testing-library/dom": "^9.3.4",
"@testing-library/react": "14.2.2",
"@testing-library/dom": "^10.0.0",
"@testing-library/react": "15.0.2",
"@testing-library/user-event": "14.5.2",
"@types/react": "18.2.78",
"@types/react-dom": "18.2.25",
Expand All @@ -32,7 +32,7 @@
"@visx/scale": "^3.5.0",
"d3-scale": "4.0.2",
"@cutting/assert": "workspace:*",
"eslint": "8.57.0",
"eslint": "^8.57.0",
"react": "18.2.0",
"react-dom": "18.2.0",
"typescript": "5.4.5"
Expand Down
2 changes: 1 addition & 1 deletion packages/use-get-parent-size/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"@cutting/eslint-config": "workspace:*",
"@cutting/tsconfig": "workspace:*",
"@cutting/useful-types": "workspace:*",
"@testing-library/react": "14.2.2",
"@testing-library/react": "15.0.2",
"@testing-library/react-hooks": "8.0.1",
"@types/react": "18.2.78",
"@types/react-dom": "18.2.25",
Expand Down
6 changes: 3 additions & 3 deletions packages/util/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@
"@cutting/eslint-config": "workspace:*",
"@cutting/tsconfig": "workspace:*",
"@cutting/useful-types": "workspace:*",
"@typescript-eslint/parser": "7.4.0",
"@typescript-eslint/eslint-plugin": "7.4.0",
"eslint": "8.57.0",
"@typescript-eslint/parser": "7.6.0",
"@typescript-eslint/eslint-plugin": "7.6.0",
"eslint": "^8.57.0",
"typescript": "5.4.5"
},
"volta": {
Expand Down
Loading

0 comments on commit f8374ed

Please sign in to comment.