Skip to content

Commit

Permalink
Data: Ensure that redux is listed as a dependency (#37364)
Browse files Browse the repository at this point in the history
  • Loading branch information
gziolo authored Dec 14, 2021
1 parent a3f18ec commit d6ec4d1
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 11 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@
"react-native": "0.64.0",
"react-native-url-polyfill": "1.1.2",
"react-test-renderer": "17.0.1",
"redux": "4.1.2",
"rimraf": "3.0.2",
"rtlcss": "2.6.2",
"sass": "1.35.2",
Expand Down
7 changes: 4 additions & 3 deletions packages/data/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,13 @@

### Bug Fix

- Corrected expect type of action creators and selectors in Redux store configuration type
- Corrected expect type of action creators and selectors in Redux store configuration type
- Move `redux` to regular dependencies and update it to version `^4.1.2`.

### Internal

- Changed names of store-related types to better reflect their use and role.
- Changed "storeDefinition" to "storeDescriptor" to better reflect its use and role.
- Changed names of store-related types to better reflect their use and role.
- Changed "storeDefinition" to "storeDescriptor" to better reflect its use and role.

## 6.1.0 (2021-09-09)

Expand Down
4 changes: 1 addition & 3 deletions packages/data/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,10 @@
"is-promise": "^4.0.0",
"lodash": "^4.17.21",
"memize": "^1.1.0",
"redux": "^4.1.2",
"turbo-combine-reducers": "^1.0.2",
"use-memo-one": "^1.1.1"
},
"peerDependencies": {
"redux": "^4.1.0"
},
"publishConfig": {
"access": "public"
}
Expand Down
4 changes: 3 additions & 1 deletion packages/redux-routine/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@
"@babel/runtime": "^7.16.0",
"is-promise": "^4.0.0",
"lodash": "^4.17.21",
"redux": "^4.1.0",
"rungen": "^0.3.2"
},
"peerDependencies": {
"redux": ">=4"
},
"publishConfig": {
"access": "public"
}
Expand Down

0 comments on commit d6ec4d1

Please sign in to comment.