mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-01-31 11:51:41 +03:00
Fix styled-components duplication (#991)
This commit is contained in:
parent
06ba7575bc
commit
872a144a69
|
@ -21,10 +21,12 @@
|
||||||
"lodash.shuffle": "^4.2.0",
|
"lodash.shuffle": "^4.2.0",
|
||||||
"react": "^17.0.2",
|
"react": "^17.0.2",
|
||||||
"react-dom": "^17.0.2",
|
"react-dom": "^17.0.2",
|
||||||
|
"react-is": "^17.0.2",
|
||||||
"react-redux": "^7.2.6",
|
"react-redux": "^7.2.6",
|
||||||
"react-router": "^5.2.1",
|
"react-router": "^5.2.1",
|
||||||
"redux": "^4.1.2",
|
"redux": "^4.1.2",
|
||||||
"redux-logger": "^3.0.6"
|
"redux-logger": "^3.0.6",
|
||||||
|
"styled-components": "^5.3.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.16.7",
|
"@babel/core": "^7.16.7",
|
||||||
|
@ -39,6 +41,7 @@
|
||||||
"@types/react-redux": "^7.1.21",
|
"@types/react-redux": "^7.1.21",
|
||||||
"@types/react-router": "^5.1.17",
|
"@types/react-router": "^5.1.17",
|
||||||
"@types/redux-logger": "^3.0.9",
|
"@types/redux-logger": "^3.0.9",
|
||||||
|
"@types/styled-components": "^5.1.19",
|
||||||
"@types/webpack-dev-server": "^4.5.1",
|
"@types/webpack-dev-server": "^4.5.1",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
||||||
"@typescript-eslint/parser": "^5.8.1",
|
"@typescript-eslint/parser": "^5.8.1",
|
||||||
|
|
|
@ -85,7 +85,9 @@
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@redux-devtools/inspector-monitor": "^1.0.0",
|
"@redux-devtools/inspector-monitor": "^1.0.0",
|
||||||
"@types/react": "^16.3.0 || ^17.0.0",
|
"@types/react": "^16.3.0 || ^17.0.0",
|
||||||
|
"@types/styled-components": "^5.1.19",
|
||||||
"react": "^16.3.0 || ^17.0.0",
|
"react": "^16.3.0 || ^17.0.0",
|
||||||
"redux": "^3.4.0 || ^4.0.0"
|
"redux": "^3.4.0 || ^4.0.0",
|
||||||
|
"styled-components": "^5.3.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -24,8 +24,10 @@
|
||||||
"react": "^17.0.2",
|
"react": "^17.0.2",
|
||||||
"react-dom": "^17.0.2",
|
"react-dom": "^17.0.2",
|
||||||
"react-icons": "^4.3.1",
|
"react-icons": "^4.3.1",
|
||||||
|
"react-is": "^17.0.2",
|
||||||
"react-redux": "^7.2.6",
|
"react-redux": "^7.2.6",
|
||||||
"react-router-dom": "^5.3.0"
|
"react-router-dom": "^5.3.0",
|
||||||
|
"styled-components": "^5.3.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/core": "^7.16.7",
|
"@babel/core": "^7.16.7",
|
||||||
|
@ -39,6 +41,7 @@
|
||||||
"@types/react-dom": "^17.0.11",
|
"@types/react-dom": "^17.0.11",
|
||||||
"@types/react-redux": "^7.1.21",
|
"@types/react-redux": "^7.1.21",
|
||||||
"@types/react-router-dom": "^5.3.2",
|
"@types/react-router-dom": "^5.3.2",
|
||||||
|
"@types/styled-components": "^5.1.19",
|
||||||
"@types/webpack-dev-server": "^4.5.1",
|
"@types/webpack-dev-server": "^4.5.1",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
||||||
"@typescript-eslint/parser": "^5.8.1",
|
"@typescript-eslint/parser": "^5.8.1",
|
||||||
|
|
|
@ -79,7 +79,9 @@
|
||||||
"@redux-devtools/core": "^3.7.0",
|
"@redux-devtools/core": "^3.7.0",
|
||||||
"@reduxjs/toolkit": "^1.7.1",
|
"@reduxjs/toolkit": "^1.7.1",
|
||||||
"@types/react": "^16.3.0 || ^17.0.0",
|
"@types/react": "^16.3.0 || ^17.0.0",
|
||||||
|
"@types/styled-components": "^5.1.19",
|
||||||
"react": "^16.3.0 || ^17.0.0",
|
"react": "^16.3.0 || ^17.0.0",
|
||||||
"redux": "^3.4.0 || ^4.0.0"
|
"redux": "^3.4.0 || ^4.0.0",
|
||||||
|
"styled-components": "^5.3.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,8 +23,10 @@
|
||||||
"prop-types": "^15.8.0",
|
"prop-types": "^15.8.0",
|
||||||
"react": "^17.0.2",
|
"react": "^17.0.2",
|
||||||
"react-dom": "^17.0.2",
|
"react-dom": "^17.0.2",
|
||||||
|
"react-is": "^17.0.2",
|
||||||
"react-redux": "^7.2.6",
|
"react-redux": "^7.2.6",
|
||||||
"redux": "^4.1.2",
|
"redux": "^4.1.2",
|
||||||
|
"styled-components": "^5.3.3",
|
||||||
"todomvc-app-css": "^2.4.1"
|
"todomvc-app-css": "^2.4.1"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
@ -38,6 +40,7 @@
|
||||||
"@types/react": "^17.0.38",
|
"@types/react": "^17.0.38",
|
||||||
"@types/react-dom": "^17.0.11",
|
"@types/react-dom": "^17.0.11",
|
||||||
"@types/react-redux": "^7.1.21",
|
"@types/react-redux": "^7.1.21",
|
||||||
|
"@types/styled-components": "^5.1.19",
|
||||||
"@types/webpack-dev-server": "^4.5.1",
|
"@types/webpack-dev-server": "^4.5.1",
|
||||||
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
"@typescript-eslint/eslint-plugin": "^5.8.1",
|
||||||
"@typescript-eslint/parser": "^5.8.1",
|
"@typescript-eslint/parser": "^5.8.1",
|
||||||
|
|
|
@ -57,7 +57,9 @@
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"@redux-devtools/core": "^3.7.0",
|
"@redux-devtools/core": "^3.7.0",
|
||||||
"@types/react": "^16.3.0 || ^17.0.0",
|
"@types/react": "^16.3.0 || ^17.0.0",
|
||||||
|
"@types/styled-components": "^5.1.19",
|
||||||
"react": "^16.3.0 || ^17.0.0",
|
"react": "^16.3.0 || ^17.0.0",
|
||||||
"redux": "^3.4.0 || ^4.0.0"
|
"redux": "^3.4.0 || ^4.0.0",
|
||||||
|
"styled-components": "^5.3.3"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
15
yarn.lock
15
yarn.lock
|
@ -4837,8 +4837,10 @@ __metadata:
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@redux-devtools/inspector-monitor": ^1.0.0
|
"@redux-devtools/inspector-monitor": ^1.0.0
|
||||||
"@types/react": ^16.3.0 || ^17.0.0
|
"@types/react": ^16.3.0 || ^17.0.0
|
||||||
|
"@types/styled-components": ^5.1.19
|
||||||
react: ^16.3.0 || ^17.0.0
|
react: ^16.3.0 || ^17.0.0
|
||||||
redux: ^3.4.0 || ^4.0.0
|
redux: ^3.4.0 || ^4.0.0
|
||||||
|
styled-components: ^5.3.3
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
|
@ -5077,8 +5079,10 @@ __metadata:
|
||||||
"@redux-devtools/core": ^3.7.0
|
"@redux-devtools/core": ^3.7.0
|
||||||
"@reduxjs/toolkit": ^1.7.1
|
"@reduxjs/toolkit": ^1.7.1
|
||||||
"@types/react": ^16.3.0 || ^17.0.0
|
"@types/react": ^16.3.0 || ^17.0.0
|
||||||
|
"@types/styled-components": ^5.1.19
|
||||||
react: ^16.3.0 || ^17.0.0
|
react: ^16.3.0 || ^17.0.0
|
||||||
redux: ^3.4.0 || ^4.0.0
|
redux: ^3.4.0 || ^4.0.0
|
||||||
|
styled-components: ^5.3.3
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
|
@ -5137,8 +5141,10 @@ __metadata:
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
"@redux-devtools/core": ^3.7.0
|
"@redux-devtools/core": ^3.7.0
|
||||||
"@types/react": ^16.3.0 || ^17.0.0
|
"@types/react": ^16.3.0 || ^17.0.0
|
||||||
|
"@types/styled-components": ^5.1.19
|
||||||
react: ^16.3.0 || ^17.0.0
|
react: ^16.3.0 || ^17.0.0
|
||||||
redux: ^3.4.0 || ^4.0.0
|
redux: ^3.4.0 || ^4.0.0
|
||||||
|
styled-components: ^5.3.3
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
|
@ -25501,6 +25507,7 @@ __metadata:
|
||||||
"@types/react-dom": ^17.0.11
|
"@types/react-dom": ^17.0.11
|
||||||
"@types/react-redux": ^7.1.21
|
"@types/react-redux": ^7.1.21
|
||||||
"@types/react-router-dom": ^5.3.2
|
"@types/react-router-dom": ^5.3.2
|
||||||
|
"@types/styled-components": ^5.1.19
|
||||||
"@types/webpack-dev-server": ^4.5.1
|
"@types/webpack-dev-server": ^4.5.1
|
||||||
"@typescript-eslint/eslint-plugin": ^5.8.1
|
"@typescript-eslint/eslint-plugin": ^5.8.1
|
||||||
"@typescript-eslint/parser": ^5.8.1
|
"@typescript-eslint/parser": ^5.8.1
|
||||||
|
@ -25518,9 +25525,11 @@ __metadata:
|
||||||
react: ^17.0.2
|
react: ^17.0.2
|
||||||
react-dom: ^17.0.2
|
react-dom: ^17.0.2
|
||||||
react-icons: ^4.3.1
|
react-icons: ^4.3.1
|
||||||
|
react-is: ^17.0.2
|
||||||
react-redux: ^7.2.6
|
react-redux: ^7.2.6
|
||||||
react-router-dom: ^5.3.0
|
react-router-dom: ^5.3.0
|
||||||
style-loader: ^3.3.1
|
style-loader: ^3.3.1
|
||||||
|
styled-components: ^5.3.3
|
||||||
ts-node: ^10.4.0
|
ts-node: ^10.4.0
|
||||||
typescript: ~4.5.4
|
typescript: ~4.5.4
|
||||||
webpack: ^5.65.0
|
webpack: ^5.65.0
|
||||||
|
@ -26283,6 +26292,7 @@ __metadata:
|
||||||
"@types/react": ^17.0.38
|
"@types/react": ^17.0.38
|
||||||
"@types/react-dom": ^17.0.11
|
"@types/react-dom": ^17.0.11
|
||||||
"@types/react-redux": ^7.1.21
|
"@types/react-redux": ^7.1.21
|
||||||
|
"@types/styled-components": ^5.1.19
|
||||||
"@types/webpack-dev-server": ^4.5.1
|
"@types/webpack-dev-server": ^4.5.1
|
||||||
"@typescript-eslint/eslint-plugin": ^5.8.1
|
"@typescript-eslint/eslint-plugin": ^5.8.1
|
||||||
"@typescript-eslint/parser": ^5.8.1
|
"@typescript-eslint/parser": ^5.8.1
|
||||||
|
@ -26298,9 +26308,11 @@ __metadata:
|
||||||
prop-types: ^15.8.0
|
prop-types: ^15.8.0
|
||||||
react: ^17.0.2
|
react: ^17.0.2
|
||||||
react-dom: ^17.0.2
|
react-dom: ^17.0.2
|
||||||
|
react-is: ^17.0.2
|
||||||
react-redux: ^7.2.6
|
react-redux: ^7.2.6
|
||||||
redux: ^4.1.2
|
redux: ^4.1.2
|
||||||
style-loader: ^3.3.1
|
style-loader: ^3.3.1
|
||||||
|
styled-components: ^5.3.3
|
||||||
todomvc-app-css: ^2.4.1
|
todomvc-app-css: ^2.4.1
|
||||||
ts-node: ^10.4.0
|
ts-node: ^10.4.0
|
||||||
typescript: ~4.5.4
|
typescript: ~4.5.4
|
||||||
|
@ -27770,6 +27782,7 @@ __metadata:
|
||||||
"@types/react-redux": ^7.1.21
|
"@types/react-redux": ^7.1.21
|
||||||
"@types/react-router": ^5.1.17
|
"@types/react-router": ^5.1.17
|
||||||
"@types/redux-logger": ^3.0.9
|
"@types/redux-logger": ^3.0.9
|
||||||
|
"@types/styled-components": ^5.1.19
|
||||||
"@types/webpack-dev-server": ^4.5.1
|
"@types/webpack-dev-server": ^4.5.1
|
||||||
"@typescript-eslint/eslint-plugin": ^5.8.1
|
"@typescript-eslint/eslint-plugin": ^5.8.1
|
||||||
"@typescript-eslint/parser": ^5.8.1
|
"@typescript-eslint/parser": ^5.8.1
|
||||||
|
@ -27787,11 +27800,13 @@ __metadata:
|
||||||
lodash.shuffle: ^4.2.0
|
lodash.shuffle: ^4.2.0
|
||||||
react: ^17.0.2
|
react: ^17.0.2
|
||||||
react-dom: ^17.0.2
|
react-dom: ^17.0.2
|
||||||
|
react-is: ^17.0.2
|
||||||
react-redux: ^7.2.6
|
react-redux: ^7.2.6
|
||||||
react-router: ^5.2.1
|
react-router: ^5.2.1
|
||||||
redux: ^4.1.2
|
redux: ^4.1.2
|
||||||
redux-logger: ^3.0.6
|
redux-logger: ^3.0.6
|
||||||
style-loader: ^3.3.1
|
style-loader: ^3.3.1
|
||||||
|
styled-components: ^5.3.3
|
||||||
ts-node: ^10.4.0
|
ts-node: ^10.4.0
|
||||||
typescript: ~4.5.4
|
typescript: ~4.5.4
|
||||||
webpack: ^5.65.0
|
webpack: ^5.65.0
|
||||||
|
|
Loading…
Reference in New Issue
Block a user