Skip to content

Commit

Permalink
fix(deps): update dependency electron to v30 (#1676)
Browse files Browse the repository at this point in the history
* fix(deps): update dependency electron to v30

* Test installing chromedriver

* Test

* Revert "Test"

This reverts commit 473f872.

* Test

* Update

* Typo? :fingers-crossed:

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Nathan Bierema <nbierema@gmail.com>
  • Loading branch information
renovate[bot] and Methuselah96 committed Jun 10, 2024
1 parent d9cdc25 commit a4382ec
Show file tree
Hide file tree
Showing 4 changed files with 147 additions and 28 deletions.
4 changes: 2 additions & 2 deletions extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,9 +60,9 @@
"@types/react": "^18.3.3",
"@types/react-dom": "^18.3.0",
"@types/styled-components": "^5.1.34",
"chromedriver": "^118.0.1",
"chromedriver": "^124.0.4",
"cross-env": "^7.0.3",
"electron": "^27.3.11",
"electron": "^30.1.0",
"esbuild": "^0.21.4",
"eslint": "^8.57.0",
"eslint-config-airbnb": "^19.0.4",
Expand Down
7 changes: 4 additions & 3 deletions extension/test/electron/devpanel.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,14 @@ describe('DevTools panel for Electron', function () {
if (attempts === 0) {
return callback('Redux panel not found');
}
if (UI.inspectorView) {
const tabs = UI.inspectorView.tabbedPane.tabs;
if (EUI.InspectorView) {
const instance = EUI.InspectorView.InspectorView.instance();
const tabs = instance.tabbedPane.tabs;
const idList = tabs.map((tab) => tab.id);
const reduxPanelId =
'chrome-extension://lmhkpmbekcpmknklioeibfkpmmfibljdRedux';
if (idList.indexOf(reduxPanelId) !== -1) {
UI.inspectorView.showPanel(reduxPanelId);
instance.showPanel(reduxPanelId);
return callback(reduxPanelId);
}
}
Expand Down
2 changes: 1 addition & 1 deletion packages/redux-devtools-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
"chalk": "^5.3.0",
"cors": "^2.8.5",
"cross-spawn": "^7.0.3",
"electron": "^27.3.11",
"electron": "^30.1.0",
"express": "^4.19.2",
"get-port": "^7.1.0",
"graphql": "^16.8.1",
Expand Down
162 changes: 140 additions & 22 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a4382ec

Please sign in to comment.