Skip to content

Commit 7956f84

Browse files
fix(deps): update all non-major dependencies (#2041)
* fix(deps): update all non-major dependencies * Fix lint --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Nathan Bierema <nbierema@gmail.com>
1 parent 9566101 commit 7956f84

49 files changed

Lines changed: 2486 additions & 2354 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

extension/package.json

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,44 +38,44 @@
3838
"jsan": "^3.1.14",
3939
"localforage": "^1.10.0",
4040
"lodash-es": "^4.18.1",
41-
"react": "^19.2.5",
42-
"react-dom": "^19.2.5",
41+
"react": "^19.2.6",
42+
"react-dom": "^19.2.6",
4343
"react-icons": "^5.6.0",
44-
"react-is": "^19.2.5",
44+
"react-is": "^19.2.6",
4545
"react-json-tree": "workspace:^",
4646
"react-redux": "^9.2.0",
4747
"redux": "^5.0.1",
4848
"redux-persist": "^6.0.0"
4949
},
5050
"devDependencies": {
5151
"@babel/core": "^7.29.0",
52-
"@babel/preset-env": "^7.29.2",
52+
"@babel/preset-env": "^7.29.5",
5353
"@babel/preset-react": "^7.28.5",
5454
"@babel/preset-typescript": "^7.28.5",
55-
"@babel/register": "^7.28.6",
56-
"@jest/globals": "^30.3.0",
55+
"@babel/register": "^7.29.3",
56+
"@jest/globals": "^30.4.1",
5757
"@testing-library/dom": "^10.4.1",
5858
"@testing-library/jest-dom": "^6.9.1",
5959
"@testing-library/react": "^16.3.2",
60-
"@types/chrome": "^0.1.40",
60+
"@types/chrome": "^0.1.42",
6161
"@types/lodash-es": "^4.17.12",
6262
"@types/react": "^19.2.14",
6363
"@types/react-dom": "^19.2.3",
6464
"chromedriver": "^148.0.2",
6565
"cross-env": "^10.1.0",
66-
"electron": "^42.0.0",
66+
"electron": "^42.0.1",
6767
"esbuild": "^0.28.0",
68-
"globals": "^17.4.0",
68+
"globals": "^17.6.0",
6969
"immutable": "^5.1.5",
70-
"jest": "^30.3.0",
71-
"jest-environment-jsdom": "^30.3.0",
70+
"jest": "^30.4.2",
71+
"jest-environment-jsdom": "^30.4.1",
7272
"pug": "^3.0.4",
7373
"rimraf": "^6.1.3",
7474
"selenium-webdriver": "^4.43.0",
7575
"sinon-chrome": "^3.0.1",
7676
"ts-jest": "^29.4.9",
77-
"typescript": "~6.0.2",
78-
"webpack": "^5.106.1",
77+
"typescript": "~6.0.3",
78+
"webpack": "^5.106.2",
7979
"webpack-cli": "^7.0.2"
8080
}
8181
}

extension/src/background/store/apiMiddleware.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -377,13 +377,7 @@ function toContentScript(messageBody: ToContentScriptMessage) {
377377
connections.tab[id].postMessage({
378378
type: message,
379379
action,
380-
state: nonReduxDispatch(
381-
store,
382-
message,
383-
instanceId,
384-
action as AppDispatchAction,
385-
state,
386-
),
380+
state: nonReduxDispatch(store, message, instanceId, action, state),
387381
id: (instanceId as number).toString().replace(/^[^/]+\//, ''),
388382
});
389383
}

extension/src/pageScript/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ const preEnhancer =
578578
dispatch: (...args: any[]) =>
579579
!window.__REDUX_DEVTOOLS_EXTENSION_LOCKED__ &&
580580
(store.dispatch as any)(...args),
581-
} as any;
581+
};
582582
};
583583

584584
export type InferComposedStoreExt<StoreEnhancers> = StoreEnhancers extends [

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,17 @@
22
"private": true,
33
"devDependencies": {
44
"@babel/core": "^7.29.0",
5-
"@changesets/cli": "^2.30.0",
5+
"@changesets/cli": "^2.31.0",
66
"@eslint/js": "^9.39.4",
77
"eslint": "^9.39.4",
88
"eslint-config-prettier": "^10.1.8",
99
"eslint-plugin-jest": "^29.15.2",
1010
"eslint-plugin-react": "^7.37.5",
11-
"eslint-plugin-react-hooks": "^7.0.1",
12-
"jest": "^30.3.0",
13-
"prettier": "3.8.2",
14-
"typescript": "~6.0.2",
15-
"typescript-eslint": "^8.58.1"
11+
"eslint-plugin-react-hooks": "^7.1.1",
12+
"jest": "^30.4.2",
13+
"prettier": "3.8.3",
14+
"typescript": "~6.0.3",
15+
"typescript-eslint": "^8.59.2"
1616
},
1717
"scripts": {
1818
"format": "prettier --write .",
@@ -23,5 +23,5 @@
2323
"clean:all": "pnpm --recursive run clean",
2424
"release": "pnpm build:all && pnpm publish -r"
2525
},
26-
"packageManager": "pnpm@11.0.8"
26+
"packageManager": "pnpm@11.0.9"
2727
}

packages/d3-state-visualizer/examples/tree/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"map2tree": "workspace:^"
3232
},
3333
"devDependencies": {
34-
"typescript": "~6.0.2",
35-
"vite": "^8.0.8"
34+
"typescript": "~6.0.3",
35+
"vite": "^8.0.11"
3636
}
3737
}

packages/d3-state-visualizer/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@
4646
"devDependencies": {
4747
"@types/ramda": "^0.31.1",
4848
"rimraf": "^6.1.3",
49-
"typescript": "~6.0.2"
49+
"typescript": "~6.0.3"
5050
}
5151
}

packages/d3tooltip/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
"@types/d3": "^7.4.3",
3636
"d3": "^7.9.0",
3737
"rimraf": "^6.1.3",
38-
"typescript": "~6.0.2"
38+
"typescript": "~6.0.3"
3939
},
4040
"peerDependencies": {
4141
"@types/d3": "^7.4.3",

packages/map2tree/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
"@types/jest": "^30.0.0",
4343
"@types/lodash-es": "^4.17.12",
4444
"immutable": "^5.1.5",
45-
"jest": "^30.3.0",
45+
"jest": "^30.4.2",
4646
"rimraf": "^6.1.3",
4747
"ts-jest": "^29.4.9",
48-
"typescript": "~6.0.2"
48+
"typescript": "~6.0.3"
4949
}
5050
}

packages/react-base16-styling/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,10 @@
4444
"@types/color": "^4.2.1",
4545
"@types/jest": "^30.0.0",
4646
"@types/lodash-es": "^4.17.12",
47-
"jest": "^30.3.0",
48-
"jest-environment-jsdom": "^30.3.0",
47+
"jest": "^30.4.2",
48+
"jest-environment-jsdom": "^30.4.1",
4949
"rimraf": "^6.1.3",
5050
"ts-jest": "^29.4.9",
51-
"typescript": "~6.0.2"
51+
"typescript": "~6.0.3"
5252
}
5353
}

packages/react-base16-styling/src/index.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -110,10 +110,7 @@ const mergeStyling = (
110110
case 'function':
111111
return (styling, ...args) =>
112112
(customStyling as StylingValueFunction)(
113-
(defaultStyling as StylingValueFunction)(
114-
styling,
115-
...args,
116-
) as Styling,
113+
(defaultStyling as StylingValueFunction)(styling, ...args),
117114
...args,
118115
);
119116
}
@@ -272,6 +269,7 @@ export const getBase16Theme = (
272269
if (base16Themes) {
273270
theme = base16Themes[themeName];
274271
} else {
272+
// eslint-disable-next-line @typescript-eslint/no-unnecessary-type-assertion -- needed: Base16Theme is structurally assignable to StylingConfig's index signature, so the narrowing widens to Base16Theme | StylingConfig without this
275273
theme = base16[themeName as keyof typeof base16] as Base16Theme;
276274
}
277275
if (modifier === 'inverted') {

0 commit comments

Comments
 (0)