diff --git a/package.json b/package.json index d6b8bbd35..b1dfcfcac 100644 --- a/package.json +++ b/package.json @@ -121,7 +121,6 @@ "@storybook/react": "8.4.5", "@storybook/react-vite": "8.4.5", "@storybook/test-runner": "0.19.1", - "@storybook/testing-library": "0.2.2", "@tanstack/react-query": "5.61.0", "@testing-library/react": "16.0.1", "@testing-library/user-event": "14.5.2", diff --git a/src/ItemFlag/ItemFlagDialog.stories.tsx b/src/ItemFlag/ItemFlagDialog.stories.tsx index bba053db9..ffc303674 100644 --- a/src/ItemFlag/ItemFlagDialog.stories.tsx +++ b/src/ItemFlag/ItemFlagDialog.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { expect, fn } from '@storybook/test'; -import { screen, userEvent, within } from '@storybook/testing-library'; +import { expect, fn, screen, userEvent, within } from '@storybook/test'; import { FlagType } from '@graasp/sdk'; diff --git a/src/MainMenu/MenuItem/MenuItem.stories.tsx b/src/MainMenu/MenuItem/MenuItem.stories.tsx index 3602a56fc..eaf6ead35 100644 --- a/src/MainMenu/MenuItem/MenuItem.stories.tsx +++ b/src/MainMenu/MenuItem/MenuItem.stories.tsx @@ -1,6 +1,5 @@ import type { StoryObj } from '@storybook/react'; -import { expect, fn } from '@storybook/test'; -import { userEvent, within } from '@storybook/testing-library'; +import { expect, fn, userEvent, within } from '@storybook/test'; import { SparklesIcon } from 'lucide-react'; import { TABLE_CATEGORIES } from '../../utils/storybook.js'; diff --git a/src/Navigation/Navigation.stories.tsx b/src/Navigation/Navigation.stories.tsx index b3dbbebd9..9e0ef2bc0 100644 --- a/src/Navigation/Navigation.stories.tsx +++ b/src/Navigation/Navigation.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { expect } from '@storybook/test'; -import { within } from '@storybook/testing-library'; +import { expect, within } from '@storybook/test'; import { CogIcon } from 'lucide-react'; import { BrowserRouter } from 'react-router-dom'; diff --git a/src/PlatformSwitch/PlatformSwitch.stories.tsx b/src/PlatformSwitch/PlatformSwitch.stories.tsx index 364a782e8..fe5c3a48c 100644 --- a/src/PlatformSwitch/PlatformSwitch.stories.tsx +++ b/src/PlatformSwitch/PlatformSwitch.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { expect } from '@storybook/test'; -import { userEvent, within } from '@storybook/testing-library'; +import { expect, userEvent, within } from '@storybook/test'; import type { BoundFunctions } from '@testing-library/dom'; import { queries } from '@testing-library/dom'; import { Snowflake } from 'lucide-react'; diff --git a/src/Select/Select.stories.tsx b/src/Select/Select.stories.tsx index c2642c430..b8b7104d1 100644 --- a/src/Select/Select.stories.tsx +++ b/src/Select/Select.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { expect } from '@storybook/test'; -import { within } from '@storybook/testing-library'; +import { expect, within } from '@storybook/test'; import { TABLE_CATEGORIES } from '../utils/storybook.js'; import Select from './Select.js'; diff --git a/src/Tree/Breadcrumbs.stories.tsx b/src/Tree/Breadcrumbs.stories.tsx index c6a2840e7..26e87a0b2 100644 --- a/src/Tree/Breadcrumbs.stories.tsx +++ b/src/Tree/Breadcrumbs.stories.tsx @@ -1,6 +1,5 @@ import { Meta, type StoryObj } from '@storybook/react'; -import { expect, fn } from '@storybook/test'; -import { userEvent, within } from '@storybook/testing-library'; +import { expect, fn, userEvent, within } from '@storybook/test'; import { Home } from 'lucide-react'; import { TABLE_CATEGORIES } from '@/utils/storybook.js'; diff --git a/src/Tree/RowMenu.stories.tsx b/src/Tree/RowMenu.stories.tsx index 53100a3e7..4c091bc41 100644 --- a/src/Tree/RowMenu.stories.tsx +++ b/src/Tree/RowMenu.stories.tsx @@ -1,6 +1,5 @@ import { Meta, type StoryObj } from '@storybook/react'; -import { expect, fn } from '@storybook/test'; -import { userEvent, within } from '@storybook/testing-library'; +import { expect, fn, userEvent, within } from '@storybook/test'; import { TABLE_CATEGORIES } from '@/utils/storybook.js'; diff --git a/src/Tree/RowMenus.stories.tsx b/src/Tree/RowMenus.stories.tsx index 70c2218c1..45b534ea6 100644 --- a/src/Tree/RowMenus.stories.tsx +++ b/src/Tree/RowMenus.stories.tsx @@ -1,6 +1,5 @@ import { Meta, type StoryObj } from '@storybook/react'; -import { expect, fn } from '@storybook/test'; -import { userEvent, within } from '@storybook/testing-library'; +import { expect, fn, userEvent, within } from '@storybook/test'; import { Box } from '@mui/material'; diff --git a/src/UserSwitch/UserSwitch.stories.tsx b/src/UserSwitch/UserSwitch.stories.tsx index dc80e3d7a..587d6d183 100644 --- a/src/UserSwitch/UserSwitch.stories.tsx +++ b/src/UserSwitch/UserSwitch.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { expect } from '@storybook/test'; -import { screen, userEvent, within } from '@storybook/testing-library'; +import { expect, screen, userEvent, within } from '@storybook/test'; import { AccountType } from '@graasp/sdk'; diff --git a/src/UserSwitch/UserSwitchWrapper.stories.tsx b/src/UserSwitch/UserSwitchWrapper.stories.tsx index a998b76d4..32a4b6fab 100644 --- a/src/UserSwitch/UserSwitchWrapper.stories.tsx +++ b/src/UserSwitch/UserSwitchWrapper.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { expect } from '@storybook/test'; -import { screen, userEvent, within } from '@storybook/testing-library'; +import { expect, screen, userEvent, within } from '@storybook/test'; import { GuestFactory, diff --git a/src/buttons/BookmarkButton/BookmarkButton.stories.tsx b/src/buttons/BookmarkButton/BookmarkButton.stories.tsx index 0a7126d7a..529065132 100644 --- a/src/buttons/BookmarkButton/BookmarkButton.stories.tsx +++ b/src/buttons/BookmarkButton/BookmarkButton.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { expect, fn } from '@storybook/test'; -import { userEvent, within } from '@storybook/testing-library'; +import { expect, fn, userEvent, within } from '@storybook/test'; import { ActionButton, ColorVariants } from '@/types.js'; diff --git a/src/buttons/ChatboxButton/ChatboxButton.stories.tsx b/src/buttons/ChatboxButton/ChatboxButton.stories.tsx index 729f85f97..998a01997 100644 --- a/src/buttons/ChatboxButton/ChatboxButton.stories.tsx +++ b/src/buttons/ChatboxButton/ChatboxButton.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { expect, fn } from '@storybook/test'; -import { userEvent, within } from '@storybook/testing-library'; +import { expect, fn, userEvent, within } from '@storybook/test'; import { ActionButton } from '../../types.js'; import { TABLE_CATEGORIES } from '../../utils/storybook.js'; diff --git a/src/buttons/DownloadButton/DownloadButton.stories.tsx b/src/buttons/DownloadButton/DownloadButton.stories.tsx index 2301e94ea..73cb744fa 100644 --- a/src/buttons/DownloadButton/DownloadButton.stories.tsx +++ b/src/buttons/DownloadButton/DownloadButton.stories.tsx @@ -1,6 +1,5 @@ import type { StoryObj } from '@storybook/react'; -import { expect, fn } from '@storybook/test'; -import { userEvent, within } from '@storybook/testing-library'; +import { expect, fn, userEvent, within } from '@storybook/test'; import { ActionButton, ColorVariants } from '../../types.js'; import { TABLE_CATEGORIES } from '../../utils/storybook.js'; diff --git a/src/buttons/EditButton/EditButton.stories.tsx b/src/buttons/EditButton/EditButton.stories.tsx index 412477284..0e3420504 100644 --- a/src/buttons/EditButton/EditButton.stories.tsx +++ b/src/buttons/EditButton/EditButton.stories.tsx @@ -1,6 +1,5 @@ import type { StoryObj } from '@storybook/react'; -import { expect, fn } from '@storybook/test'; -import { userEvent, within } from '@storybook/testing-library'; +import { expect, fn, userEvent, within } from '@storybook/test'; import { ActionButton } from '@/types.js'; import { TABLE_CATEGORIES } from '@/utils/storybook.js'; diff --git a/src/buttons/PinButton/PinButton.stories.tsx b/src/buttons/PinButton/PinButton.stories.tsx index 534f72812..9907e5d35 100644 --- a/src/buttons/PinButton/PinButton.stories.tsx +++ b/src/buttons/PinButton/PinButton.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { expect, fn } from '@storybook/test'; -import { userEvent, within } from '@storybook/testing-library'; +import { expect, fn, userEvent, within } from '@storybook/test'; import { ActionButton, ColorVariants } from '@/types.js'; import { TABLE_CATEGORIES } from '@/utils/storybook.js'; diff --git a/src/buttons/ShareButton/ShareButton.stories.tsx b/src/buttons/ShareButton/ShareButton.stories.tsx index 6064f3ae7..08d9f1430 100644 --- a/src/buttons/ShareButton/ShareButton.stories.tsx +++ b/src/buttons/ShareButton/ShareButton.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { expect, fn } from '@storybook/test'; -import { userEvent, within } from '@storybook/testing-library'; +import { expect, fn, userEvent, within } from '@storybook/test'; import { ActionButton } from '@/types.js'; import { TABLE_CATEGORIES } from '@/utils/storybook.js'; diff --git a/src/itemLogin/ItemLoginScreen.stories.tsx b/src/itemLogin/ItemLoginScreen.stories.tsx index eea72f185..3b022725b 100644 --- a/src/itemLogin/ItemLoginScreen.stories.tsx +++ b/src/itemLogin/ItemLoginScreen.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { expect, fn } from '@storybook/test'; -import { userEvent, within } from '@storybook/testing-library'; +import { expect, fn, userEvent, within } from '@storybook/test'; import { ItemLoginSchemaType, PackedDocumentItemFactory } from '@graasp/sdk'; diff --git a/src/itemLogin/ItemLoginWrapper.stories.tsx b/src/itemLogin/ItemLoginWrapper.stories.tsx index 91a5e27c3..c113cbe8b 100644 --- a/src/itemLogin/ItemLoginWrapper.stories.tsx +++ b/src/itemLogin/ItemLoginWrapper.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { expect, fn } from '@storybook/test'; -import { within } from '@storybook/testing-library'; +import { expect, fn, within } from '@storybook/test'; import { StatusCodes } from 'http-status-codes'; import { v4 } from 'uuid'; diff --git a/src/items/AppItem.stories.tsx b/src/items/AppItem.stories.tsx index 03861c369..ddc728d1e 100644 --- a/src/items/AppItem.stories.tsx +++ b/src/items/AppItem.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { expect } from '@storybook/test'; -import { within } from '@storybook/testing-library'; +import { expect, within } from '@storybook/test'; import { AppItemFactory, diff --git a/src/upload/FileDropper/FileDropper.stories.tsx b/src/upload/FileDropper/FileDropper.stories.tsx index ffafcab87..f10fcf43b 100644 --- a/src/upload/FileDropper/FileDropper.stories.tsx +++ b/src/upload/FileDropper/FileDropper.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { expect, fn } from '@storybook/test'; -import { within } from '@storybook/testing-library'; +import { expect, fn, within } from '@storybook/test'; import { Box } from '@mui/material'; diff --git a/src/upload/UploadFileButton/UploadFileButton.stories.tsx b/src/upload/UploadFileButton/UploadFileButton.stories.tsx index 2ef835d8c..b3043f1ca 100644 --- a/src/upload/UploadFileButton/UploadFileButton.stories.tsx +++ b/src/upload/UploadFileButton/UploadFileButton.stories.tsx @@ -1,6 +1,5 @@ import type { Meta, StoryObj } from '@storybook/react'; -import { expect } from '@storybook/test'; -import { within } from '@storybook/testing-library'; +import { expect, within } from '@storybook/test'; import { FileBox } from 'lucide-react'; import { TABLE_CATEGORIES } from '@/utils/storybook.js'; diff --git a/yarn.lock b/yarn.lock index bbd23de1e..90cbfcee5 100644 --- a/yarn.lock +++ b/yarn.lock @@ -1458,7 +1458,6 @@ __metadata: "@storybook/react": "npm:8.4.5" "@storybook/react-vite": "npm:8.4.5" "@storybook/test-runner": "npm:0.19.1" - "@storybook/testing-library": "npm:0.2.2" "@tanstack/react-query": "npm:5.61.0" "@testing-library/react": "npm:16.0.1" "@testing-library/user-event": "npm:14.5.2" @@ -3268,17 +3267,6 @@ __metadata: languageName: node linkType: hard -"@storybook/testing-library@npm:0.2.2": - version: 0.2.2 - resolution: "@storybook/testing-library@npm:0.2.2" - dependencies: - "@testing-library/dom": "npm:^9.0.0" - "@testing-library/user-event": "npm:^14.4.0" - ts-dedent: "npm:^2.2.0" - checksum: 10/85a8c39b432009c5ebac40569deef48b54f3b65f91bd1902bc86d4f130433bff2866c8bece9acdbd3f5cc92da5a1401f7405d11457570c96d3a30ba21c976b7b - languageName: node - linkType: hard - "@storybook/theming@npm:8.4.5": version: 8.4.5 resolution: "@storybook/theming@npm:8.4.5" @@ -3467,22 +3455,6 @@ __metadata: languageName: node linkType: hard -"@testing-library/dom@npm:^9.0.0": - version: 9.3.4 - resolution: "@testing-library/dom@npm:9.3.4" - dependencies: - "@babel/code-frame": "npm:^7.10.4" - "@babel/runtime": "npm:^7.12.5" - "@types/aria-query": "npm:^5.0.1" - aria-query: "npm:5.1.3" - chalk: "npm:^4.1.0" - dom-accessibility-api: "npm:^0.5.9" - lz-string: "npm:^1.5.0" - pretty-format: "npm:^27.0.2" - checksum: 10/510da752ea76f4a10a0a4e3a77917b0302cf03effe576cd3534cab7e796533ee2b0e9fb6fb11b911a1ebd7c70a0bb6f235bf4f816c9b82b95b8fe0cddfd10975 - languageName: node - linkType: hard - "@testing-library/jest-dom@npm:6.5.0": version: 6.5.0 resolution: "@testing-library/jest-dom@npm:6.5.0" @@ -3518,7 +3490,7 @@ __metadata: languageName: node linkType: hard -"@testing-library/user-event@npm:14.5.2, @testing-library/user-event@npm:^14.4.0, @testing-library/user-event@npm:^14.5.2": +"@testing-library/user-event@npm:14.5.2, @testing-library/user-event@npm:^14.5.2": version: 14.5.2 resolution: "@testing-library/user-event@npm:14.5.2" peerDependencies: @@ -4571,15 +4543,6 @@ __metadata: languageName: node linkType: hard -"aria-query@npm:5.1.3": - version: 5.1.3 - resolution: "aria-query@npm:5.1.3" - dependencies: - deep-equal: "npm:^2.0.5" - checksum: 10/e5da608a7c4954bfece2d879342b6c218b6b207e2d9e5af270b5e38ef8418f02d122afdc948b68e32649b849a38377785252059090d66fa8081da95d1609c0d2 - languageName: node - linkType: hard - "aria-query@npm:5.3.0": version: 5.3.0 resolution: "aria-query@npm:5.3.0" @@ -4596,7 +4559,7 @@ __metadata: languageName: node linkType: hard -"array-buffer-byte-length@npm:^1.0.0, array-buffer-byte-length@npm:^1.0.1": +"array-buffer-byte-length@npm:^1.0.1": version: 1.0.1 resolution: "array-buffer-byte-length@npm:1.0.1" dependencies: @@ -5692,32 +5655,6 @@ __metadata: languageName: node linkType: hard -"deep-equal@npm:^2.0.5": - version: 2.2.3 - resolution: "deep-equal@npm:2.2.3" - dependencies: - array-buffer-byte-length: "npm:^1.0.0" - call-bind: "npm:^1.0.5" - es-get-iterator: "npm:^1.1.3" - get-intrinsic: "npm:^1.2.2" - is-arguments: "npm:^1.1.1" - is-array-buffer: "npm:^3.0.2" - is-date-object: "npm:^1.0.5" - is-regex: "npm:^1.1.4" - is-shared-array-buffer: "npm:^1.0.2" - isarray: "npm:^2.0.5" - object-is: "npm:^1.1.5" - object-keys: "npm:^1.1.1" - object.assign: "npm:^4.1.4" - regexp.prototype.flags: "npm:^1.5.1" - side-channel: "npm:^1.0.4" - which-boxed-primitive: "npm:^1.0.2" - which-collection: "npm:^1.0.1" - which-typed-array: "npm:^1.1.13" - checksum: 10/1ce49d0b71d0f14d8ef991a742665eccd488dfc9b3cada069d4d7a86291e591c92d2589c832811dea182b4015736b210acaaebce6184be356c1060d176f5a05f - languageName: node - linkType: hard - "deep-is@npm:^0.1.3": version: 0.1.4 resolution: "deep-is@npm:0.1.4" @@ -6105,23 +6042,6 @@ __metadata: languageName: node linkType: hard -"es-get-iterator@npm:^1.1.3": - version: 1.1.3 - resolution: "es-get-iterator@npm:1.1.3" - dependencies: - call-bind: "npm:^1.0.2" - get-intrinsic: "npm:^1.1.3" - has-symbols: "npm:^1.0.3" - is-arguments: "npm:^1.1.1" - is-map: "npm:^2.0.2" - is-set: "npm:^2.0.2" - is-string: "npm:^1.0.7" - isarray: "npm:^2.0.5" - stop-iteration-iterator: "npm:^1.0.0" - checksum: 10/bc2194befbe55725f9489098626479deee3c801eda7e83ce0dff2eb266a28dc808edb9b623ff01d31ebc1328f09d661333d86b601036692c2e3c1a6942319433 - languageName: node - linkType: hard - "es-module-lexer@npm:^1.5.4": version: 1.5.4 resolution: "es-module-lexer@npm:1.5.4" @@ -7196,7 +7116,7 @@ __metadata: languageName: node linkType: hard -"get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.1, get-intrinsic@npm:^1.2.2, get-intrinsic@npm:^1.2.3, get-intrinsic@npm:^1.2.4": +"get-intrinsic@npm:^1.1.3, get-intrinsic@npm:^1.2.1, get-intrinsic@npm:^1.2.3, get-intrinsic@npm:^1.2.4": version: 1.2.4 resolution: "get-intrinsic@npm:1.2.4" dependencies: @@ -7774,7 +7694,7 @@ __metadata: languageName: node linkType: hard -"internal-slot@npm:^1.0.4, internal-slot@npm:^1.0.7": +"internal-slot@npm:^1.0.7": version: 1.0.7 resolution: "internal-slot@npm:1.0.7" dependencies: @@ -7816,7 +7736,7 @@ __metadata: languageName: node linkType: hard -"is-array-buffer@npm:^3.0.2, is-array-buffer@npm:^3.0.4": +"is-array-buffer@npm:^3.0.4": version: 3.0.4 resolution: "is-array-buffer@npm:3.0.4" dependencies: @@ -7950,13 +7870,6 @@ __metadata: languageName: node linkType: hard -"is-map@npm:^2.0.2, is-map@npm:^2.0.3": - version: 2.0.3 - resolution: "is-map@npm:2.0.3" - checksum: 10/8de7b41715b08bcb0e5edb0fb9384b80d2d5bcd10e142188f33247d19ff078abaf8e9b6f858e2302d8d05376a26a55cd23a3c9f8ab93292b02fcd2cc9e4e92bb - languageName: node - linkType: hard - "is-negative-zero@npm:^2.0.3": version: 2.0.3 resolution: "is-negative-zero@npm:2.0.3" @@ -8011,13 +7924,6 @@ __metadata: languageName: node linkType: hard -"is-set@npm:^2.0.2, is-set@npm:^2.0.3": - version: 2.0.3 - resolution: "is-set@npm:2.0.3" - checksum: 10/5685df33f0a4a6098a98c72d94d67cad81b2bc72f1fb2091f3d9283c4a1c582123cd709145b02a9745f0ce6b41e3e43f1c944496d1d74d4ea43358be61308669 - languageName: node - linkType: hard - "is-shared-array-buffer@npm:^1.0.2, is-shared-array-buffer@npm:^1.0.3": version: 1.0.3 resolution: "is-shared-array-buffer@npm:1.0.3" @@ -8077,13 +7983,6 @@ __metadata: languageName: node linkType: hard -"is-weakmap@npm:^2.0.2": - version: 2.0.2 - resolution: "is-weakmap@npm:2.0.2" - checksum: 10/a7b7e23206c542dcf2fa0abc483142731788771527e90e7e24f658c0833a0d91948a4f7b30d78f7a65255a48512e41a0288b778ba7fc396137515c12e201fd11 - languageName: node - linkType: hard - "is-weakref@npm:^1.0.2": version: 1.0.2 resolution: "is-weakref@npm:1.0.2" @@ -8093,16 +7992,6 @@ __metadata: languageName: node linkType: hard -"is-weakset@npm:^2.0.3": - version: 2.0.3 - resolution: "is-weakset@npm:2.0.3" - dependencies: - call-bind: "npm:^1.0.7" - get-intrinsic: "npm:^1.2.4" - checksum: 10/40159582ff1b44fc40085f631baf19f56479b05af2faede65b4e6a0b6acab745c13fd070e35b475aafd8a1ee50879ba5a3f1265125b46bebdb446b6be1f62165 - languageName: node - linkType: hard - "is-windows@npm:^0.2.0": version: 0.2.0 resolution: "is-windows@npm:0.2.0" @@ -11450,15 +11339,6 @@ __metadata: languageName: node linkType: hard -"stop-iteration-iterator@npm:^1.0.0": - version: 1.0.0 - resolution: "stop-iteration-iterator@npm:1.0.0" - dependencies: - internal-slot: "npm:^1.0.4" - checksum: 10/2a23a36f4f6bfa63f46ae2d53a3f80fe8276110b95a55345d8ed3d92125413494033bc8697eb774e8f7aeb5725f70e3d69753caa2ecacdac6258c16fa8aa8b0f - languageName: node - linkType: hard - "storybook@npm:8.4.5": version: 8.4.5 resolution: "storybook@npm:8.4.5" @@ -12648,18 +12528,6 @@ __metadata: languageName: node linkType: hard -"which-collection@npm:^1.0.1": - version: 1.0.2 - resolution: "which-collection@npm:1.0.2" - dependencies: - is-map: "npm:^2.0.3" - is-set: "npm:^2.0.3" - is-weakmap: "npm:^2.0.2" - is-weakset: "npm:^2.0.3" - checksum: 10/674bf659b9bcfe4055f08634b48a8588e879161b9fefed57e9ec4ff5601e4d50a05ccd76cf10f698ef5873784e5df3223336d56c7ce88e13bcf52ebe582fc8d7 - languageName: node - linkType: hard - "which-module@npm:^2.0.0": version: 2.0.1 resolution: "which-module@npm:2.0.1" @@ -12667,7 +12535,7 @@ __metadata: languageName: node linkType: hard -"which-typed-array@npm:^1.1.13, which-typed-array@npm:^1.1.14, which-typed-array@npm:^1.1.15, which-typed-array@npm:^1.1.2": +"which-typed-array@npm:^1.1.14, which-typed-array@npm:^1.1.15, which-typed-array@npm:^1.1.2": version: 1.1.15 resolution: "which-typed-array@npm:1.1.15" dependencies: