mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-12-02 22:43:53 +03:00
c9fe990a4d
* Version Packages * Update version numbers * Update CHANGELOGs Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
18 lines
524 B
Markdown
18 lines
524 B
Markdown
# Change Log
|
|
|
|
## 2.1.2
|
|
|
|
### Patch Changes
|
|
|
|
- Updated dependencies [4891bf6]
|
|
- @redux-devtools/core@3.12.0
|
|
|
|
## 2.0.0
|
|
|
|
- Adds ESM build (https://github.com/reduxjs/redux-devtools/pull/997) and switches the default export to a named export in order to ensure that the CommonJS output and the ESM output are [interchangeable](https://rollupjs.org/guide/en/#outputexports):
|
|
|
|
```diff
|
|
- import RtkQueryrMonitor from '@redux-devtools/rtk-query-monitor';
|
|
+ import { RtkQueryrMonitor } from '@redux-devtools/rtk-query-monitor';
|
|
```
|