Update dependency await-lock to v3 (#31466)
* Update dependency await-lock to v3 * Change moduleResolution Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Make jest happier Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Patch await-lock to make jest happy Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> * Patch @vector-im/matrix-wysiwyg Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --------- Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
co-authored by
renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Michael Telatynski
parent
5783ee4cb8
commit
905c1b9489
+1
-1
@@ -42,7 +42,7 @@ const config: Config = {
|
|||||||
"counterpart": "<rootDir>/node_modules/counterpart",
|
"counterpart": "<rootDir>/node_modules/counterpart",
|
||||||
},
|
},
|
||||||
transformIgnorePatterns: [
|
transformIgnorePatterns: [
|
||||||
"/node_modules/(?!(mime|matrix-js-sdk|uuid|p-retry|is-network-error|react-merge-refs|is-ip|ip-regex|super-regex|function-timeout|time-span|convert-hrtime|clone-regexp|is-regexp|matrix-web-i18n)).+$",
|
"/node_modules/(?!(mime|matrix-js-sdk|uuid|p-retry|is-network-error|react-merge-refs|is-ip|ip-regex|super-regex|function-timeout|time-span|convert-hrtime|clone-regexp|is-regexp|matrix-web-i18n|await-lock)).+$",
|
||||||
],
|
],
|
||||||
collectCoverageFrom: [
|
collectCoverageFrom: [
|
||||||
"<rootDir>/src/**/*.{js,ts,tsx}",
|
"<rootDir>/src/**/*.{js,ts,tsx}",
|
||||||
|
|||||||
+1
-1
@@ -98,7 +98,7 @@
|
|||||||
"@zxcvbn-ts/core": "^3.0.4",
|
"@zxcvbn-ts/core": "^3.0.4",
|
||||||
"@zxcvbn-ts/language-common": "^3.0.4",
|
"@zxcvbn-ts/language-common": "^3.0.4",
|
||||||
"@zxcvbn-ts/language-en": "^3.0.2",
|
"@zxcvbn-ts/language-en": "^3.0.2",
|
||||||
"await-lock": "^2.1.0",
|
"await-lock": "^3.0.0",
|
||||||
"bloom-filters": "^3.0.3",
|
"bloom-filters": "^3.0.3",
|
||||||
"blurhash": "^2.0.3",
|
"blurhash": "^2.0.3",
|
||||||
"browserslist": "^4.23.2",
|
"browserslist": "^4.23.2",
|
||||||
|
|||||||
@@ -0,0 +1,12 @@
|
|||||||
|
diff --git a/node_modules/@vector-im/matrix-wysiwyg/package.json b/node_modules/@vector-im/matrix-wysiwyg/package.json
|
||||||
|
index 8163a3b..dfef973 100644
|
||||||
|
--- a/node_modules/@vector-im/matrix-wysiwyg/package.json
|
||||||
|
+++ b/node_modules/@vector-im/matrix-wysiwyg/package.json
|
||||||
|
@@ -11,6 +11,7 @@
|
||||||
|
"license": "SEE LICENSE IN README.md",
|
||||||
|
"exports": {
|
||||||
|
".": {
|
||||||
|
+ "types": "./dist/index.d.ts",
|
||||||
|
"import": "./dist/matrix-wysiwyg.js",
|
||||||
|
"require": "./dist/matrix-wysiwyg.umd.cjs"
|
||||||
|
}
|
||||||
@@ -0,0 +1,14 @@
|
|||||||
|
diff --git a/node_modules/await-lock/package.json b/node_modules/await-lock/package.json
|
||||||
|
index 84a2734..cbda839 100644
|
||||||
|
--- a/node_modules/await-lock/package.json
|
||||||
|
+++ b/node_modules/await-lock/package.json
|
||||||
|
@@ -6,7 +6,8 @@
|
||||||
|
"exports": {
|
||||||
|
".": {
|
||||||
|
"types": "./build/AwaitLock.d.ts",
|
||||||
|
- "import": "./build/AwaitLock.js"
|
||||||
|
+ "import": "./build/AwaitLock.js",
|
||||||
|
+ "require": "./build/AwaitLock.js"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"files": [
|
||||||
@@ -9,7 +9,7 @@ Please see LICENSE files in the repository root for full details.
|
|||||||
import React from "react";
|
import React from "react";
|
||||||
import { mocked, type Mocked } from "jest-mock";
|
import { mocked, type Mocked } from "jest-mock";
|
||||||
import { screen, render, act, cleanup } from "jest-matrix-react";
|
import { screen, render, act, cleanup } from "jest-matrix-react";
|
||||||
import userEvent from "@testing-library/user-event";
|
import userEvent, { type UserEvent } from "@testing-library/user-event";
|
||||||
import {
|
import {
|
||||||
type MatrixClient,
|
type MatrixClient,
|
||||||
PendingEventOrdering,
|
PendingEventOrdering,
|
||||||
@@ -18,7 +18,6 @@ import {
|
|||||||
type RoomMember,
|
type RoomMember,
|
||||||
} from "matrix-js-sdk/src/matrix";
|
} from "matrix-js-sdk/src/matrix";
|
||||||
import { Widget, type ClientWidgetApi } from "matrix-widget-api";
|
import { Widget, type ClientWidgetApi } from "matrix-widget-api";
|
||||||
import { type UserEvent } from "@testing-library/user-event/dist/types/setup/setup";
|
|
||||||
|
|
||||||
import {
|
import {
|
||||||
useMockedCalls,
|
useMockedCalls,
|
||||||
|
|||||||
+1
-1
@@ -7,7 +7,7 @@
|
|||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"useDefineForClassFields": true,
|
"useDefineForClassFields": true,
|
||||||
"module": "es2022",
|
"module": "es2022",
|
||||||
"moduleResolution": "node",
|
"moduleResolution": "bundler",
|
||||||
"target": "es2022",
|
"target": "es2022",
|
||||||
"noUnusedLocals": true,
|
"noUnusedLocals": true,
|
||||||
"sourceMap": false,
|
"sourceMap": false,
|
||||||
|
|||||||
@@ -1690,17 +1690,8 @@
|
|||||||
yaml "^2.7.0"
|
yaml "^2.7.0"
|
||||||
|
|
||||||
"@element-hq/web-shared-components@link:packages/shared-components":
|
"@element-hq/web-shared-components@link:packages/shared-components":
|
||||||
version "0.0.0-test.12"
|
version "0.0.0"
|
||||||
dependencies:
|
uid ""
|
||||||
"@element-hq/element-web-module-api" "^1.8.0"
|
|
||||||
"@vector-im/compound-design-tokens" "^6.4.3"
|
|
||||||
classnames "^2.5.1"
|
|
||||||
counterpart "^0.18.6"
|
|
||||||
lodash "^4.17.21"
|
|
||||||
matrix-web-i18n "3.5.2"
|
|
||||||
patch-package "^8.0.1"
|
|
||||||
react-merge-refs "^3.0.2"
|
|
||||||
temporal-polyfill "^0.3.0"
|
|
||||||
|
|
||||||
"@emnapi/core@^1.4.3":
|
"@emnapi/core@^1.4.3":
|
||||||
version "1.7.0"
|
version "1.7.0"
|
||||||
@@ -4644,13 +4635,14 @@
|
|||||||
|
|
||||||
"@vector-im/matrix-wysiwyg-wasm@link:../../../.cache/yarn/v6/npm-@vector-im-matrix-wysiwyg-2.40.0-53c9ca5ea907d91e4515da64f20a82e5586b882c-integrity/node_modules/bindings/wysiwyg-wasm":
|
"@vector-im/matrix-wysiwyg-wasm@link:../../../.cache/yarn/v6/npm-@vector-im-matrix-wysiwyg-2.40.0-53c9ca5ea907d91e4515da64f20a82e5586b882c-integrity/node_modules/bindings/wysiwyg-wasm":
|
||||||
version "0.0.0"
|
version "0.0.0"
|
||||||
|
uid ""
|
||||||
|
|
||||||
"@vector-im/matrix-wysiwyg@2.40.0":
|
"@vector-im/matrix-wysiwyg@2.40.0":
|
||||||
version "2.40.0"
|
version "2.40.0"
|
||||||
resolved "https://registry.yarnpkg.com/@vector-im/matrix-wysiwyg/-/matrix-wysiwyg-2.40.0.tgz#53c9ca5ea907d91e4515da64f20a82e5586b882c"
|
resolved "https://registry.yarnpkg.com/@vector-im/matrix-wysiwyg/-/matrix-wysiwyg-2.40.0.tgz#53c9ca5ea907d91e4515da64f20a82e5586b882c"
|
||||||
integrity sha512-8LRFLs5PEKYs4lOL7aJ4lL/hGCrvEvOYkCR3JggXYXDVMtX4LmfdlKYucSAe98pCmqAAbLRvlRcR1bTOYvM8ug==
|
integrity sha512-8LRFLs5PEKYs4lOL7aJ4lL/hGCrvEvOYkCR3JggXYXDVMtX4LmfdlKYucSAe98pCmqAAbLRvlRcR1bTOYvM8ug==
|
||||||
dependencies:
|
dependencies:
|
||||||
"@vector-im/matrix-wysiwyg-wasm" "link:../../../.cache/yarn/v6/npm-@vector-im-matrix-wysiwyg-2.40.0-53c9ca5ea907d91e4515da64f20a82e5586b882c-integrity/node_modules/bindings/wysiwyg-wasm"
|
"@vector-im/matrix-wysiwyg-wasm" "link:../../Library/Caches/Yarn/v6/npm-@vector-im-matrix-wysiwyg-2.40.0-53c9ca5ea907d91e4515da64f20a82e5586b882c-integrity/node_modules/bindings/wysiwyg-wasm"
|
||||||
|
|
||||||
"@vitest/expect@3.2.4":
|
"@vitest/expect@3.2.4":
|
||||||
version "3.2.4"
|
version "3.2.4"
|
||||||
@@ -5271,10 +5263,10 @@ available-typed-arrays@^1.0.7:
|
|||||||
dependencies:
|
dependencies:
|
||||||
possible-typed-array-names "^1.0.0"
|
possible-typed-array-names "^1.0.0"
|
||||||
|
|
||||||
await-lock@^2.1.0:
|
await-lock@^3.0.0:
|
||||||
version "2.2.2"
|
version "3.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/await-lock/-/await-lock-2.2.2.tgz#a95a9b269bfd2f69d22b17a321686f551152bcef"
|
resolved "https://registry.yarnpkg.com/await-lock/-/await-lock-3.0.0.tgz#d6c6c5554d1a734509f5c0f6fa49a24457043d19"
|
||||||
integrity sha512-aDczADvlvTGajTDjcjpJMqRkOF6Qdz3YbPZm/PyW6tKPkx2hlYBzxMhEywM/tU72HrVZjgl5VCdRuMlA7pZ8Gw==
|
integrity sha512-eO6fLiSnrJrMdjWMNK8zbVRXPs2TKJg78iKZd9wDpN3na5tcoV6EoeiOlMgk2QaAQ1gIrK1YuMsJHXWqz89tSA==
|
||||||
|
|
||||||
axe-core@^4.10.0:
|
axe-core@^4.10.0:
|
||||||
version "4.10.2"
|
version "4.10.2"
|
||||||
|
|||||||
Reference in New Issue
Block a user