Skip to content

Commit

Permalink
fix(deps): downgrade all breakage from dependabot et al
Browse files Browse the repository at this point in the history
- go back to Storybook v6 addons, matching the `storybook` dep
  - the addons were partially auto-upgraded to breaking versions by dependabot
- go back to Webpack v4, matching Storybook v6
  - this was also auto-upgraded to a breaking version by dependabot
  - go back to `ts-loader` v8, matching Webpack v4
    - and this too had a breaking dependabot upgrade

Signed-off-by: Anton Gilgur <[email protected]>
  • Loading branch information
Anton Gilgur committed Jul 18, 2024
1 parent 00a8b57 commit 30acdb5
Show file tree
Hide file tree
Showing 3 changed files with 900 additions and 2,535 deletions.
21 changes: 9 additions & 12 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"react-form": "^2.16.0",
"react-helmet": "^6.1.0",
"react-router-dom": "^4.2.2",
"react-toastify": "9.0.8",
"react-toastify": "9.0.3",
"rxjs": "^7.8.1",
"typescript": "^4.9.5",
"uuid": "^9.0.0",
Expand All @@ -45,16 +45,13 @@
"devDependencies": {
"@babel/core": "^7.21.3",
"@dump247/storybook-state": "^1.6.1",
"@storybook/addon-actions": "^7.4.0",
"@storybook/addon-controls": "^7.6.14",
"@storybook/addon-essentials": "^7.6.14",
"@storybook/addon-links": "^7.4.0",
"@storybook/addons": "^7.0.20",
"@storybook/addon-actions": "^6.5.15",
"@storybook/addon-controls": "^6.5.9",
"@storybook/addon-essentials": "^6.5.14",
"@storybook/addon-links": "^6.5.16",
"@storybook/addons": "^6.5.5",
"@storybook/react": "^6.2.9",
"@testing-library/react": "^12.1.5",
"@testing-library/user-event": "^14.4.3",
"@types/classnames": "^2.3.1",
"@types/deep-equal": "^1.0.1",
"@types/enzyme": "^3.10.12",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/history": "^4.7.8",
Expand All @@ -70,9 +67,9 @@
"@types/storybook__addon-actions": "^5.2.1",
"@types/storybook__addon-links": "^3.3.0",
"@types/storybook__react": "^3.0.7",
"@types/uuid": "^9.0.3",
"@typescript-eslint/eslint-plugin": "^5.36.1",
"@typescript-eslint/parser": "^5.36.1",
"@types/uuid": "^9.0.3",
"babel-loader": "^8.2.5",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "^3.6.0",
Expand All @@ -92,10 +89,10 @@
"storybook": "^6.5.14",
"style-loader": "^2.0.0",
"ts-jest": "^26.5.6",
"ts-loader": "^9.4.4",
"ts-loader": "^8.3.0",
"ts-node": "^10.9.1",
"webfonts-generator": "^0.4.0",
"webpack": "^5.76.2"
"webpack": "^4.46.0"
},
"resolutions": {
"@types/react": "^16.8.5",
Expand Down
4 changes: 3 additions & 1 deletion stories/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
"sourceMap": true,
"noImplicitAny": true,
"module": "commonjs",
"target": "es5",
"target": "es6",
"jsx": "react",
"esModuleInterop": true,
"experimentalDecorators": true,
"noUnusedLocals": true,
"declaration": false,
"skipLibCheck": true,
"lib": [
"es2017",
"dom"
Expand Down
Loading

0 comments on commit 30acdb5

Please sign in to comment.