redux-devtools/packages/redux-devtools-remote/CHANGELOG.md
2022-01-30 17:31:00 -05:00

11 lines
407 B
Markdown

# Change Log
## 0.7.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 devToolsEnhancer from '@redux-devtools/remote';
+ import { devToolsEnhancer } from '@redux-devtools/remote';
```