This commit is contained in:
Nathan Bierema 2022-05-08 09:59:34 -04:00
parent c22ee14572
commit 15b3916170
5 changed files with 715 additions and 2868 deletions

View File

@ -19,9 +19,9 @@ jobs:
cache: 'pnpm'
- run: pnpm install
- run: pnpm run format:check
- run: pnpm run build:all
- run: pnpm run lint:all
- name: Run pnpm test:all
- run: pnpm run build:since
- run: pnpm run lint:since
- name: Run pnpm test:since
uses: GabrielBB/xvfb-action@v1
with:
run: pnpm run test:all
run: pnpm run test:since

View File

@ -22,6 +22,10 @@ It can be used as a browser extension (for [Chrome](https://chrome.google.com/we
- [Recipes](https://github.com/reduxjs/redux-devtools/blob/main/extension/docs/Recipes.md)
- [FAQ](https://github.com/reduxjs/redux-devtools/blob/main/extension/docs/FAQ.md)
## Development
This is a monorepo powered by [pnpm](https://pnpm.io/) and [Nx](https://nx.dev/). [Install pnpm](https://pnpm.io/installation) and run `pnpm install` to get started. Each package's dependencies need to be built before the package itself can be built. You can either build all the packages (i.e., `pnpm run build:all`) or use Nx commands to build only the packages necessary for the packages you're working on (i.e., `pnpm nx build remotedev-redux-devtools-extension`).
## Backers
Support us with a monthly donation and help us continue our activities. [[Become a backer](https://opencollective.com/redux-devtools-extension#backer)]

View File

@ -14,15 +14,18 @@
"jest": "^27.5.1",
"prettier": "2.6.2",
"typescript": "~4.5.5",
"nx": "14.1.4",
"@nrwl/nx-cloud": "latest"
"nx": "^14.1.4",
"@nrwl/nx-cloud": "^14.0.3"
},
"scripts": {
"format": "prettier --write .",
"build:all": "nx run-many --target=build --all",
"lint:all": "nx run-many --target=lint --all",
"test:all": "nx run-many --target=test --all",
"format:check": "prettier --check .",
"build:all": "nx run-many --target=build --all",
"build:since": "nx affected --target=build",
"lint:all": "nx run-many --target=lint --all",
"lint:since": "nx affected --target=lint",
"test:all": "nx run-many --target=test --all",
"test:since": "nx affected --target=test",
"release": "pnpm build:all && changeset publish"
},
"workspaces": [

View File

@ -91,7 +91,7 @@ Alternatively, you can use it together with [`DockMonitor`](https://github.com/r
#### Start Demo
```bash
yarn lerna run start --stream --scope @redux-devtools/rtk-query-monitor
pnpm nx start rtk-query-demo
```
<br/>

File diff suppressed because it is too large Load Diff