mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 04:07:34 +03:00
11 lines
429 B
Markdown
11 lines
429 B
Markdown
|
# Change Log
|
||
|
|
||
|
## 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';
|
||
|
```
|