Merge pull request #3998 from element-hq/renovate/all-minor-patch
Update all non-major dependencies
This commit is contained in:
+2
-2
@@ -88,7 +88,7 @@
|
|||||||
"@vitejs/plugin-react": "^4.0.1",
|
"@vitejs/plugin-react": "^4.0.1",
|
||||||
"@vitest/browser-playwright": "^4.1.5",
|
"@vitest/browser-playwright": "^4.1.5",
|
||||||
"@vitest/coverage-v8": "^4.0.18",
|
"@vitest/coverage-v8": "^4.0.18",
|
||||||
"@vitest/ui": "4.1.5",
|
"@vitest/ui": "4.1.7",
|
||||||
"babel-plugin-transform-vite-meta-env": "^1.0.3",
|
"babel-plugin-transform-vite-meta-env": "^1.0.3",
|
||||||
"classnames": "^2.3.1",
|
"classnames": "^2.3.1",
|
||||||
"copy-to-clipboard": "^3.3.3",
|
"copy-to-clipboard": "^3.3.3",
|
||||||
@@ -142,7 +142,7 @@
|
|||||||
"vite": "^8.0.0",
|
"vite": "^8.0.0",
|
||||||
"vite-plugin-generate-file": "^0.3.0",
|
"vite-plugin-generate-file": "^0.3.0",
|
||||||
"vite-plugin-html": "^3.2.2",
|
"vite-plugin-html": "^3.2.2",
|
||||||
"vite-plugin-node-polyfills": "^0.26.0",
|
"vite-plugin-node-polyfills": "^0.28.0",
|
||||||
"vite-plugin-node-stdlib-browser": "^0.2.1",
|
"vite-plugin-node-stdlib-browser": "^0.2.1",
|
||||||
"vite-plugin-svgr": "^4.0.0",
|
"vite-plugin-svgr": "^4.0.0",
|
||||||
"vite-plugin-wasm": "^3.6.0",
|
"vite-plugin-wasm": "^3.6.0",
|
||||||
|
|||||||
Generated
+2444
-1891
File diff suppressed because it is too large
Load Diff
@@ -63,7 +63,10 @@ vi.mock("react-use-measure", () => ({
|
|||||||
|
|
||||||
vi.hoisted(
|
vi.hoisted(
|
||||||
() =>
|
() =>
|
||||||
(global.ImageData = class MockImageData {
|
// Use globalThis rather than global because vite-plugin-node-polyfills seems
|
||||||
|
// to rewrite global into an import which then interferes with vitest's hoisting
|
||||||
|
// which runs before imports.
|
||||||
|
(globalThis.ImageData = class MockImageData {
|
||||||
public data: number[] = [];
|
public data: number[] = [];
|
||||||
} as unknown as typeof ImageData),
|
} as unknown as typeof ImageData),
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -57,7 +57,10 @@ import { initializeWidget } from "../widget";
|
|||||||
initializeWidget();
|
initializeWidget();
|
||||||
vi.hoisted(
|
vi.hoisted(
|
||||||
() =>
|
() =>
|
||||||
(global.ImageData = class MockImageData {
|
// Use globalThis rather than global because vite-plugin-node-polyfills seems
|
||||||
|
// to rewrite global into an import which then interferes with vitest's hoisting
|
||||||
|
// which runs before imports.
|
||||||
|
(globalThis.ImageData = class MockImageData {
|
||||||
public data: number[] = [];
|
public data: number[] = [];
|
||||||
} as unknown as typeof ImageData),
|
} as unknown as typeof ImageData),
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user