Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
Methuselah96 committed Aug 7, 2023
2 parents c693cb1 + c5f247e commit c780d2c
Show file tree
Hide file tree
Showing 39 changed files with 4,855 additions and 5,196 deletions.
5 changes: 5 additions & 0 deletions .changeset/rude-zebras-smell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@redux-devtools/inspector-monitor': patch
---

Move @types/redux-devtools-themes to dependencies
6 changes: 3 additions & 3 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,10 @@ jobs:
- name: Check formatting
run: pnpm run format:check
- name: Build
run: pnpm exec nx affected --target=build --parallel=1
run: pnpm run build:all
- name: Lint
run: pnpm exec nx affected --target=lint --parallel=1
run: pnpm run lint:all
- name: Test
uses: GabrielBB/xvfb-action@v1
with:
run: pnpm exec nx affected --target=test --parallel=1
run: pnpm run test:all
4 changes: 2 additions & 2 deletions extension/docs/API/Arguments.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@ Use with
- `window.__REDUX_DEVTOOLS_EXTENSION__([options])`
- `window.__REDUX_DEVTOOLS_EXTENSION_COMPOSE__([options])()`
- `window.__REDUX_DEVTOOLS_EXTENSION__.connect([options])`
- `redux-devtools-extension` npm package:
- `@redux-devtools/extension` npm package:

```js
import { composeWithDevTools } from 'redux-devtools-extension';
import { composeWithDevTools } from '@redux-devtools/extension';

const composeEnhancers = composeWithDevTools(options);
const store = createStore(
Expand Down
32 changes: 16 additions & 16 deletions extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
"react-icons": "^4.10.1",
"react-is": "^18.2.0",
"react-json-tree": "^0.18.0",
"react-redux": "^8.1.1",
"react-redux": "^8.1.2",
"redux": "^4.2.1",
"redux-persist": "^6.0.0",
"styled-components": "^5.3.11"
Expand All @@ -55,42 +55,42 @@
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@babel/register": "^7.22.5",
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/jest-dom": "^5.17.0",
"@testing-library/react": "^14.0.0",
"@types/chrome": "^0.0.241",
"@types/lodash": "^4.14.195",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/chrome": "^0.0.243",
"@types/lodash": "^4.14.196",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@types/styled-components": "^5.1.26",
"babel-loader": "^9.1.3",
"chromedriver": "^114.0.2",
"chromedriver": "^114.0.3",
"copy-webpack-plugin": "^11.0.0",
"cpy-cli": "^5.0.0",
"cross-env": "^7.0.3",
"css-loader": "^6.8.1",
"electron": "^25.2.0",
"eslint": "^8.44.0",
"electron": "^25.4.0",
"eslint": "^8.46.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jsx-a11y": "^6.7.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"file-loader": "^6.2.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"immutable": "^4.3.1",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"immutable": "^4.3.2",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"pug-html-loader": "^1.1.5",
"raw-loader": "^4.0.2",
"react-transform-catch-errors": "^1.0.2",
"react-transform-hmr": "^1.0.4",
"rimraf": "^5.0.1",
"selenium-webdriver": "^4.10.0",
"selenium-webdriver": "^4.11.1",
"sinon-chrome": "^3.0.1",
"style-loader": "^3.3.3",
"ts-jest": "^29.1.1",
"typescript": "~5.1.6",
"webpack": "^5.88.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4"
}
}
18 changes: 9 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
"@changesets/cli": "^2.26.2",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-react": "^7.32.2",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.1",
"prettier": "3.0.0",
"jest": "^29.6.2",
"prettier": "3.0.1",
"typescript": "~5.1.6",
"nx": "^16.5.1",
"@nrwl/nx-cloud": "^16.0.5"
"nx": "^16.6.0",
"@nrwl/nx-cloud": "^16.2.0"
},
"scripts": {
"format": "prettier --write .",
Expand All @@ -39,7 +39,7 @@
"packages/redux-devtools-rtk-query-monitor/demo",
"packages/redux-devtools-slider-monitor/examples/todomvc"
],
"packageManager": "pnpm@8.6.7",
"packageManager": "pnpm@8.6.12",
"pnpm": {
"overrides": {
"@babel/highlight>chalk": "Methuselah96/chalk#v2-without-process"
Expand Down
8 changes: 4 additions & 4 deletions packages/d3-state-visualizer/examples/tree/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,18 @@
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/node": "^18.16.19",
"@types/node": "^18.17.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3",
"ts-node": "^10.9.1",
"typescript": "~5.1.6",
"webpack": "^5.88.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/d3-state-visualizer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@
"@types/ramda": "^0.29.3",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"rimraf": "^5.0.1",
"typescript": "~5.1.6"
}
Expand Down
4 changes: 2 additions & 2 deletions packages/d3tooltip/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"d3": "^7.8.5",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"rimraf": "^5.0.1",
"typescript": "~5.1.6"
},
Expand Down
12 changes: 6 additions & 6 deletions packages/map2tree/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,14 +50,14 @@
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"@types/lodash": "^4.14.195",
"@types/lodash": "^4.14.196",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"immutable": "^4.3.1",
"jest": "^29.6.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"immutable": "^4.3.2",
"jest": "^29.6.2",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typescript": "~5.1.6"
Expand Down
12 changes: 6 additions & 6 deletions packages/react-base16-styling/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
"dependencies": {
"@babel/runtime": "^7.22.6",
"@types/base16": "^1.0.2",
"@types/lodash": "^4.14.195",
"@types/lodash": "^4.14.196",
"base16": "^1.0.0",
"color": "^4.2.3",
"csstype": "^3.1.2",
Expand All @@ -59,11 +59,11 @@
"@types/lodash.curry": "^4.1.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"typescript": "~5.1.6"
Expand Down
14 changes: 7 additions & 7 deletions packages/react-dock/demo/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,23 +23,23 @@
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/node": "^18.16.19",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/node": "^18.17.3",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@types/styled-components": "^5.1.26",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3",
"ts-node": "^10.9.1",
"typescript": "~5.1.6",
"webpack": "^5.88.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
Expand Down
16 changes: 8 additions & 8 deletions packages/react-dock/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
},
"dependencies": {
"@babel/runtime": "^7.22.6",
"@types/lodash": "^4.14.195",
"@types/lodash": "^4.14.196",
"@types/prop-types": "^15.7.5",
"lodash.debounce": "^4.0.8",
"prop-types": "^15.8.1"
Expand All @@ -55,17 +55,17 @@
"@babel/preset-typescript": "^7.22.5",
"@types/jest": "^29.5.3",
"@types/lodash.debounce": "^4.0.7",
"@types/react": "^18.2.14",
"@types/react": "^18.2.18",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-react": "^7.32.2",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.1",
"jest-environment-jsdom": "^29.6.1",
"jest": "^29.6.2",
"jest-environment-jsdom": "^29.6.2",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.1",
Expand Down
16 changes: 8 additions & 8 deletions packages/react-json-tree/examples/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"type-check": "tsc --noEmit"
},
"dependencies": {
"immutable": "^4.3.1",
"immutable": "^4.3.2",
"react": "^18.2.0",
"react-base16-styling": "^0.9.1",
"react-dom": "^18.2.0",
Expand All @@ -30,22 +30,22 @@
"@babel/preset-env": "^7.22.9",
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@types/node": "^18.16.19",
"@types/react": "^18.2.14",
"@types/react-dom": "^18.2.6",
"@types/node": "^18.17.3",
"@types/react": "^18.2.18",
"@types/react-dom": "^18.2.7",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-loader": "^9.1.3",
"cross-env": "^7.0.3",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-react": "^7.32.2",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"fork-ts-checker-webpack-plugin": "^8.0.0",
"html-webpack-plugin": "^5.5.3",
"ts-node": "^10.9.1",
"typescript": "~5.1.6",
"webpack": "^5.88.1",
"webpack": "^5.88.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
Expand Down
22 changes: 11 additions & 11 deletions packages/react-json-tree/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
},
"dependencies": {
"@babel/runtime": "^7.22.6",
"@types/lodash": "^4.14.195",
"@types/lodash": "^4.14.196",
"react-base16-styling": "^0.9.1"
},
"devDependencies": {
Expand All @@ -58,28 +58,28 @@
"@babel/preset-react": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-commonjs": "^25.0.3",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@types/jest": "^29.5.3",
"@types/node": "^18.16.19",
"@types/react": "^18.2.14",
"@types/node": "^18.17.3",
"@types/react": "^18.2.18",
"@types/react-test-renderer": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-jest": "^27.2.2",
"eslint-plugin-react": "^7.32.2",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-react": "^7.33.1",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.6.1",
"jest": "^29.6.2",
"react": "^18.2.0",
"react-test-renderer": "^18.2.0",
"rimraf": "^5.0.1",
"rollup": "^3.26.2",
"rollup": "^3.27.2",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^29.1.1",
"tslib": "^2.6.0",
"tslib": "^2.6.1",
"typescript": "~5.1.6"
},
"peerDependencies": {
Expand Down
Loading

0 comments on commit c780d2c

Please sign in to comment.