Merge branch 'main' into replace-react-dragula

This commit is contained in:
Nathan Bierema 2023-08-07 23:38:16 -04:00 committed by GitHub
commit a04ee209cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 6 additions and 6 deletions

View File

@ -25,10 +25,10 @@ jobs:
- name: Check formatting - name: Check formatting
run: pnpm run format:check run: pnpm run format:check
- name: Build - name: Build
run: pnpm exec nx affected --target=build --parallel=1 run: pnpm run build:all
- name: Lint - name: Lint
run: pnpm exec nx affected --target=lint --parallel=1 run: pnpm run lint:all
- name: Test - name: Test
uses: GabrielBB/xvfb-action@v1 uses: GabrielBB/xvfb-action@v1
with: with:
run: pnpm exec nx affected --target=test --parallel=1 run: pnpm run test:all

View File

@ -5,10 +5,10 @@ Use with
- `window.__REDUX_DEVTOOLS_EXTENSION__([options])` - `window.__REDUX_DEVTOOLS_EXTENSION__([options])`
- `window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__([options])()` - `window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__([options])()`
- `window.__REDUX_DEVTOOLS_EXTENSION__.connect([options])` - `window.__REDUX_DEVTOOLS_EXTENSION__.connect([options])`
- `redux-devtools-extension` npm package: - `@redux-devtools/extension` npm package:
```js ```js
import { composeWithDevTools } from 'redux-devtools-extension'; import { composeWithDevTools } from '@redux-devtools/extension';
const composeEnhancers = composeWithDevTools(options); const composeEnhancers = composeWithDevTools(options);
const store = createStore( const store = createStore(

View File

@ -26,7 +26,7 @@ const json = {
#### Result: #### Result:
![](http://cl.ly/image/3f2C2k2t3D0o/screenshot%202015-08-26%20at%2010.24.12%20AM.png) ![](https://i.ibb.co/0KSYRJg/example-result.png)
Check out [examples](examples) directory for more details. Check out [examples](examples) directory for more details.