diff --git a/.changeset/lazy-beers-wave.md b/.changeset/lazy-beers-wave.md deleted file mode 100644 index 922381bf3..000000000 --- a/.changeset/lazy-beers-wave.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@guardian/libs': patch ---- - -internal code refactors to simplify handling of undefined arrays diff --git a/.changeset/shiny-squids-protect.md b/.changeset/shiny-squids-protect.md deleted file mode 100644 index 8c4bef1ef..000000000 --- a/.changeset/shiny-squids-protect.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@guardian/core-web-vitals': major ---- - -This major change adds attribution data on 3 core web vital metrics; CLS, INP, and LCP. It also updates the endpoint so that this data will now be sent to a new table in big query. We now send the stage as a value to big query, rather than using separate endpoints. In addition, null values have been removed in favour of undefined. diff --git a/.changeset/twenty-steaks-sleep.md b/.changeset/twenty-steaks-sleep.md deleted file mode 100644 index 8659e8c49..000000000 --- a/.changeset/twenty-steaks-sleep.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -'@guardian/source-development-kitchen': major -'@guardian/eslint-config-typescript': major -'@guardian/identity-auth-frontend': major -'@guardian/newsletter-types': major -'@guardian/core-web-vitals': major -'@guardian/identity-auth': major -'@guardian/ab-react': major -'@guardian/ab-core': major -'@guardian/source': major -'@guardian/libs': major ---- - -Update TypeScript support to `v5.5.2`. diff --git a/libs/@guardian/ab-core/CHANGELOG.md b/libs/@guardian/ab-core/CHANGELOG.md index dc6444cd2..ff00e8938 100644 --- a/libs/@guardian/ab-core/CHANGELOG.md +++ b/libs/@guardian/ab-core/CHANGELOG.md @@ -1,5 +1,11 @@ # @guardian/ab-core +## 8.0.0 + +### Major Changes + +- e5b15dc: Update TypeScript support to `v5.5.2`. + ## 7.0.3 ### Patch Changes diff --git a/libs/@guardian/ab-core/package.json b/libs/@guardian/ab-core/package.json index 388250c42..f099b2854 100644 --- a/libs/@guardian/ab-core/package.json +++ b/libs/@guardian/ab-core/package.json @@ -1,6 +1,6 @@ { "name": "@guardian/ab-core", - "version": "7.0.3", + "version": "8.0.0", "private": false, "description": "A client-side library for A/B & multivariate testing", "license": "Apache-2.0", diff --git a/libs/@guardian/ab-react/CHANGELOG.md b/libs/@guardian/ab-react/CHANGELOG.md index f332d1af8..54589d4f7 100644 --- a/libs/@guardian/ab-react/CHANGELOG.md +++ b/libs/@guardian/ab-react/CHANGELOG.md @@ -1,5 +1,16 @@ # @guardian/ab-react +## 9.0.0 + +### Major Changes + +- e5b15dc: Update TypeScript support to `v5.5.2`. + +### Patch Changes + +- Updated dependencies [e5b15dc] + - @guardian/ab-core@8.0.0 + ## 8.0.2 ### Patch Changes diff --git a/libs/@guardian/ab-react/package.json b/libs/@guardian/ab-react/package.json index 10073348d..d8faf3d65 100644 --- a/libs/@guardian/ab-react/package.json +++ b/libs/@guardian/ab-react/package.json @@ -1,6 +1,6 @@ { "name": "@guardian/ab-react", - "version": "8.0.2", + "version": "9.0.0", "private": false, "description": "A React library for A/B & multivariate testing", "license": "Apache-2.0", @@ -26,7 +26,7 @@ "verify-dist": "wireit" }, "devDependencies": { - "@guardian/ab-core": "7.0.0", + "@guardian/ab-core": "8.0.0", "@testing-library/react": "14.2.1", "@types/jest": "29.5.8", "@types/react": "18.2.11", @@ -41,7 +41,7 @@ "wireit": "0.14.4" }, "peerDependencies": { - "@guardian/ab-core": "^7.0.0", + "@guardian/ab-core": "^8.0.0", "@types/react": "^18.2.11", "react": "^18.2.0", "react-dom": "^18.2.0", @@ -60,8 +60,16 @@ "access": "public" }, "wireit": { + "__deps__": { + "dependencies": [ + "../ab-core:build" + ] + }, "build": { "command": "rollup -c", + "dependencies": [ + "__deps__" + ], "files": [ "src/**", "package.json", @@ -75,6 +83,9 @@ }, "fix": { "command": "eslint --cache --color . --fix", + "dependencies": [ + "__deps__" + ], "files": [ "**", "../../../.eslint*", @@ -88,6 +99,9 @@ }, "lint": { "command": "eslint --cache --color .", + "dependencies": [ + "__deps__" + ], "files": [ "**", "../../../.eslint*", @@ -98,6 +112,9 @@ }, "test": { "command": "jest", + "dependencies": [ + "__deps__" + ], "files": [ "**", "../../../configs/jest.*", @@ -108,6 +125,9 @@ }, "tsc": { "command": "tsc --pretty", + "dependencies": [ + "__deps__" + ], "files": [ "**", "tsconfig.json", diff --git a/libs/@guardian/core-web-vitals/CHANGELOG.md b/libs/@guardian/core-web-vitals/CHANGELOG.md index c9553a69b..dda4cad2b 100644 --- a/libs/@guardian/core-web-vitals/CHANGELOG.md +++ b/libs/@guardian/core-web-vitals/CHANGELOG.md @@ -1,5 +1,21 @@ # @guardian/core-web-vitals +## 7.0.0 + +### Major Changes + +- 4de52e7: This major change adds attribution data on 3 core web vital metrics; CLS, INP, and LCP. + - It also updates the endpoint so that this data will now be sent to a new table in big query. We now send the stage as a value to big query, rather than using separate endpoints. + - In addition, null values have been removed in favour of undefined. + - It also updates the version of `web-vitals` required to `v4.2.1`. +- e5b15dc: Update TypeScript support to `v5.5.2`. + +### Patch Changes + +- Updated dependencies [a5498b8] +- Updated dependencies [e5b15dc] + - @guardian/libs@18.0.0 + ## 6.0.1 ### Patch Changes diff --git a/libs/@guardian/core-web-vitals/package.json b/libs/@guardian/core-web-vitals/package.json index 686b6fb53..f049ef6d7 100644 --- a/libs/@guardian/core-web-vitals/package.json +++ b/libs/@guardian/core-web-vitals/package.json @@ -1,6 +1,6 @@ { "name": "@guardian/core-web-vitals", - "version": "6.0.1", + "version": "7.0.0", "private": false, "description": "Methods to help with the implementation of Google's Core Web Vitals", "sideEffects": false, @@ -25,7 +25,7 @@ "verify-dist": "wireit" }, "devDependencies": { - "@guardian/libs": "16.0.0", + "@guardian/libs": "18.0.0", "@types/jest": "29.5.8", "jest": "29.7.0", "jest-environment-jsdom": "29.7.0", @@ -33,14 +33,14 @@ "ts-jest": "29.1.1", "tslib": "2.6.2", "typescript": "5.5.2", - "web-vitals": "4.2.0", + "web-vitals": "4.2.1", "wireit": "0.14.4" }, "peerDependencies": { - "@guardian/libs": "^16.0.0", + "@guardian/libs": "^18.0.0", "tslib": "^2.6.2", "typescript": "~5.5.2", - "web-vitals": "^4.2.0" + "web-vitals": "^4.2.1" }, "peerDependenciesMeta": { "typescript": { @@ -51,8 +51,16 @@ "access": "public" }, "wireit": { + "__deps__": { + "dependencies": [ + "../libs:build" + ] + }, "build": { "command": "rollup -c", + "dependencies": [ + "__deps__" + ], "files": [ "src/**", "package.json", @@ -66,6 +74,9 @@ }, "fix": { "command": "eslint --cache --color . --fix", + "dependencies": [ + "__deps__" + ], "files": [ "**", "../../../.eslint*", @@ -79,6 +90,9 @@ }, "lint": { "command": "eslint --cache --color .", + "dependencies": [ + "__deps__" + ], "files": [ "**", "../../../.eslint*", @@ -89,6 +103,9 @@ }, "test": { "command": "jest", + "dependencies": [ + "__deps__" + ], "files": [ "**", "../../../configs/jest.*", @@ -99,6 +116,9 @@ }, "tsc": { "command": "tsc --pretty", + "dependencies": [ + "__deps__" + ], "files": [ "**", "tsconfig.json", diff --git a/libs/@guardian/eslint-config-typescript/CHANGELOG.md b/libs/@guardian/eslint-config-typescript/CHANGELOG.md index 06b688e98..16097c30c 100644 --- a/libs/@guardian/eslint-config-typescript/CHANGELOG.md +++ b/libs/@guardian/eslint-config-typescript/CHANGELOG.md @@ -1,5 +1,11 @@ # @guardian/eslint-config-typescript +## 11.0.0 + +### Major Changes + +- e5b15dc: Update TypeScript support to `v5.5.2`. + ## 10.0.1 ### Patch Changes diff --git a/libs/@guardian/eslint-config-typescript/package.json b/libs/@guardian/eslint-config-typescript/package.json index 4ab1f5d5d..17552a17c 100644 --- a/libs/@guardian/eslint-config-typescript/package.json +++ b/libs/@guardian/eslint-config-typescript/package.json @@ -1,6 +1,6 @@ { "name": "@guardian/eslint-config-typescript", - "version": "10.0.1", + "version": "11.0.0", "description": "ESLint config for Guardian TypeScript projects", "main": "index.js", "scripts": { diff --git a/libs/@guardian/identity-auth-frontend/CHANGELOG.md b/libs/@guardian/identity-auth-frontend/CHANGELOG.md index e86df6f10..eacce2142 100644 --- a/libs/@guardian/identity-auth-frontend/CHANGELOG.md +++ b/libs/@guardian/identity-auth-frontend/CHANGELOG.md @@ -1,5 +1,18 @@ # @guardian/identity-auth-frontend +## 5.0.0 + +### Major Changes + +- e5b15dc: Update TypeScript support to `v5.5.2`. + +### Patch Changes + +- Updated dependencies [a5498b8] +- Updated dependencies [e5b15dc] + - @guardian/libs@18.0.0 + - @guardian/identity-auth@3.0.0 + ## 4.0.1 ### Patch Changes diff --git a/libs/@guardian/identity-auth-frontend/package.json b/libs/@guardian/identity-auth-frontend/package.json index 659d6b2e4..1bf05326a 100644 --- a/libs/@guardian/identity-auth-frontend/package.json +++ b/libs/@guardian/identity-auth-frontend/package.json @@ -1,6 +1,6 @@ { "name": "@guardian/identity-auth-frontend", - "version": "4.0.1", + "version": "5.0.0", "private": false, "description": "", "license": "Apache-2.0", @@ -26,8 +26,8 @@ "verify-dist": "wireit" }, "devDependencies": { - "@guardian/identity-auth": "2.1.0", - "@guardian/libs": "16.0.0", + "@guardian/identity-auth": "3.0.0", + "@guardian/libs": "18.0.0", "@types/jest": "29.5.8", "jest": "29.7.0", "jest-environment-jsdom": "29.7.0", @@ -39,8 +39,8 @@ "wireit": "0.14.4" }, "peerDependencies": { - "@guardian/identity-auth": "^2.1.0", - "@guardian/libs": "^16.0.0", + "@guardian/identity-auth": "^3.0.0", + "@guardian/libs": "^18.0.0", "tslib": "^2.6.2", "typescript": "~5.5.2" }, @@ -53,10 +53,15 @@ "access": "public" }, "wireit": { + "__deps__": { + "dependencies": [ + "../identity-auth:build" + ] + }, "build": { "command": "rollup -c", "dependencies": [ - "../identity-auth:build" + "__deps__" ], "files": [ "src/**", @@ -72,7 +77,7 @@ "fix": { "command": "eslint --cache --color . --fix", "dependencies": [ - "build" + "__deps__" ], "files": [ "**", @@ -88,7 +93,7 @@ "lint": { "command": "eslint --cache --color .", "dependencies": [ - "build" + "__deps__" ], "files": [ "**", @@ -101,7 +106,7 @@ "test": { "command": "jest", "dependencies": [ - "../identity-auth:build" + "__deps__" ], "files": [ "**", @@ -113,6 +118,9 @@ }, "tsc": { "command": "tsc --pretty", + "dependencies": [ + "__deps__" + ], "files": [ "**", "tsconfig.json", diff --git a/libs/@guardian/identity-auth/CHANGELOG.md b/libs/@guardian/identity-auth/CHANGELOG.md index a02252662..325905bd6 100644 --- a/libs/@guardian/identity-auth/CHANGELOG.md +++ b/libs/@guardian/identity-auth/CHANGELOG.md @@ -1,5 +1,17 @@ # @guardian/identity-auth +## 3.0.0 + +### Major Changes + +- e5b15dc: Update TypeScript support to `v5.5.2`. + +### Patch Changes + +- Updated dependencies [a5498b8] +- Updated dependencies [e5b15dc] + - @guardian/libs@18.0.0 + ## 2.1.1 ### Patch Changes diff --git a/libs/@guardian/identity-auth/package.json b/libs/@guardian/identity-auth/package.json index 487295369..f9a7b5407 100644 --- a/libs/@guardian/identity-auth/package.json +++ b/libs/@guardian/identity-auth/package.json @@ -1,6 +1,6 @@ { "name": "@guardian/identity-auth", - "version": "2.1.1", + "version": "3.0.0", "private": false, "description": "", "license": "Apache-2.0", @@ -26,7 +26,7 @@ "verify-dist": "wireit" }, "devDependencies": { - "@guardian/libs": "16.0.0", + "@guardian/libs": "18.0.0", "@types/jest": "29.5.8", "jest": "29.7.0", "jest-environment-jsdom": "29.7.0", @@ -38,7 +38,7 @@ "wireit": "0.14.4" }, "peerDependencies": { - "@guardian/libs": "^16.0.0", + "@guardian/libs": "^18.0.0", "tslib": "^2.6.2", "typescript": "~5.5.2" }, @@ -51,8 +51,16 @@ "access": "public" }, "wireit": { + "__deps__": { + "dependencies": [ + "../libs:build" + ] + }, "build": { "command": "rollup -c", + "dependencies": [ + "__deps__" + ], "files": [ "src/**", "package.json", @@ -66,6 +74,9 @@ }, "fix": { "command": "eslint --cache --color . --fix", + "dependencies": [ + "__deps__" + ], "files": [ "**", "../../../.eslint*", @@ -79,6 +90,9 @@ }, "lint": { "command": "eslint --cache --color .", + "dependencies": [ + "__deps__" + ], "files": [ "**", "../../../.eslint*", @@ -89,6 +103,9 @@ }, "test": { "command": "jest", + "dependencies": [ + "__deps__" + ], "files": [ "**", "../../../configs/jest.*", @@ -99,6 +116,9 @@ }, "tsc": { "command": "tsc --pretty", + "dependencies": [ + "__deps__" + ], "files": [ "**", "tsconfig.json", diff --git a/libs/@guardian/libs/CHANGELOG.md b/libs/@guardian/libs/CHANGELOG.md index 2a72bc061..159695775 100644 --- a/libs/@guardian/libs/CHANGELOG.md +++ b/libs/@guardian/libs/CHANGELOG.md @@ -1,5 +1,15 @@ # @guardian/libs +## 18.0.0 + +### Major Changes + +- e5b15dc: Update TypeScript support to `v5.5.2`. + +### Patch Changes + +- a5498b8: internal code refactors to simplify handling of undefined arrays + ## 17.0.1 ### Patch Changes diff --git a/libs/@guardian/libs/package.json b/libs/@guardian/libs/package.json index c0ff72f20..be333a1cd 100644 --- a/libs/@guardian/libs/package.json +++ b/libs/@guardian/libs/package.json @@ -1,6 +1,6 @@ { "name": "@guardian/libs", - "version": "17.0.1", + "version": "18.0.0", "private": false, "description": "A collection of JavaScript libraries and TypeScript types for Guardian projects", "sideEffects": false, @@ -136,6 +136,9 @@ }, "tsc": { "command": "tsc --pretty", + "dependencies": [ + "../identity-auth-frontend:build" + ], "files": [ "**", "tsconfig.json", diff --git a/libs/@guardian/newsletter-types/CHANGELOG.md b/libs/@guardian/newsletter-types/CHANGELOG.md index cd269b157..2c103c5c6 100644 --- a/libs/@guardian/newsletter-types/CHANGELOG.md +++ b/libs/@guardian/newsletter-types/CHANGELOG.md @@ -1,5 +1,11 @@ # @guardian/newsletter-types +## 3.0.0 + +### Major Changes + +- e5b15dc: Update TypeScript support to `v5.5.2`. + ## 2.0.1 ### Patch Changes diff --git a/libs/@guardian/newsletter-types/package.json b/libs/@guardian/newsletter-types/package.json index 0d91d96e4..1690f38a1 100644 --- a/libs/@guardian/newsletter-types/package.json +++ b/libs/@guardian/newsletter-types/package.json @@ -1,6 +1,6 @@ { "name": "@guardian/newsletter-types", - "version": "2.0.1", + "version": "3.0.0", "private": false, "description": "A set of types describing the output of the Guardian newsletters API", "sideEffects": false, diff --git a/libs/@guardian/source-development-kitchen/CHANGELOG.md b/libs/@guardian/source-development-kitchen/CHANGELOG.md index 37fa1c466..f78c7a6d8 100644 --- a/libs/@guardian/source-development-kitchen/CHANGELOG.md +++ b/libs/@guardian/source-development-kitchen/CHANGELOG.md @@ -1,5 +1,18 @@ # @guardian/source-development-kitchen +## 4.0.0 + +### Major Changes + +- e5b15dc: Update TypeScript support to `v5.5.2`. + +### Patch Changes + +- Updated dependencies [a5498b8] +- Updated dependencies [e5b15dc] + - @guardian/libs@18.0.0 + - @guardian/source@5.0.0 + ## 3.0.0 ### Major Changes diff --git a/libs/@guardian/source-development-kitchen/package.json b/libs/@guardian/source-development-kitchen/package.json index 7fd99cacb..8c5d61e18 100644 --- a/libs/@guardian/source-development-kitchen/package.json +++ b/libs/@guardian/source-development-kitchen/package.json @@ -1,6 +1,6 @@ { "name": "@guardian/source-development-kitchen", - "version": "3.0.0", + "version": "4.0.0", "sideEffects": false, "type": "module", "exports": { @@ -28,8 +28,8 @@ "devDependencies": { "@babel/core": "7.24.0", "@emotion/react": "11.11.3", - "@guardian/libs": "17.0.0", - "@guardian/source": "4.0.0", + "@guardian/libs": "18.0.0", + "@guardian/source": "5.0.0", "@storybook/manager-api": "8.1.8", "@storybook/react": "8.1.8", "@types/jest": "29.5.8", @@ -45,8 +45,8 @@ }, "peerDependencies": { "@emotion/react": "^11.11.3", - "@guardian/libs": "^17.0.0", - "@guardian/source": "^4.0.0", + "@guardian/libs": "^18.0.0", + "@guardian/source": "^5.0.0", "@types/react": "^18.2.11", "react": "^18.2.0", "tslib": "^2.6.2", @@ -67,8 +67,16 @@ } }, "wireit": { + "__deps__": { + "dependencies": [ + "../source:build" + ] + }, "build": { "command": "rollup -c", + "dependencies": [ + "__deps__" + ], "files": [ "src/**", "package.json", @@ -83,7 +91,7 @@ "build-storybook": { "command": "NODE_ENV=production storybook build --webpack-stats-json", "dependencies": [ - "../source:build" + "__deps__" ], "files": [ "**", @@ -98,6 +106,9 @@ }, "fix": { "command": "eslint --cache --color . --fix", + "dependencies": [ + "__deps__" + ], "files": [ "**", "../../../.eslint*", @@ -111,6 +122,9 @@ }, "lint": { "command": "eslint --cache --color .", + "dependencies": [ + "__deps__" + ], "files": [ "**", "../../../.eslint*", @@ -121,6 +135,9 @@ }, "test": { "command": "jest", + "dependencies": [ + "__deps__" + ], "files": [ "**", "../../../configs/jest.*", @@ -132,7 +149,7 @@ "tsc": { "command": "tsc --pretty", "dependencies": [ - "../source:build" + "__deps__" ], "files": [ "**", diff --git a/libs/@guardian/source/CHANGELOG.md b/libs/@guardian/source/CHANGELOG.md index 1f912ffd1..92a9d88e1 100644 --- a/libs/@guardian/source/CHANGELOG.md +++ b/libs/@guardian/source/CHANGELOG.md @@ -1,5 +1,11 @@ # @guardian/source +## 5.0.0 + +### Major Changes + +- e5b15dc: Update TypeScript support to `v5.5.2`. + ## 4.0.0 ### Major Changes diff --git a/libs/@guardian/source/package.json b/libs/@guardian/source/package.json index 94d7f1528..14a1e56c9 100644 --- a/libs/@guardian/source/package.json +++ b/libs/@guardian/source/package.json @@ -1,6 +1,6 @@ { "name": "@guardian/source", - "version": "4.0.0", + "version": "5.0.0", "license": "Apache-2.0", "sideEffects": false, "type": "module", @@ -41,7 +41,7 @@ "@babel/core": "7.24.0", "@emotion/react": "11.11.3", "@guardian/design-tokens": "workspace:*", - "@guardian/libs": "16.1.3", + "@guardian/libs": "18.0.0", "@storybook/manager-api": "8.1.8", "@storybook/react": "8.1.8", "@svgr/babel-preset": "8.1.0", @@ -92,7 +92,8 @@ "wireit": { "__deps__": { "dependencies": [ - "../design-tokens:build" + "../design-tokens:build", + "../libs:build" ] }, "build": { diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index b9a7537e5..c7bcaf512 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -243,8 +243,8 @@ importers: libs/@guardian/ab-react: devDependencies: '@guardian/ab-core': - specifier: 7.0.0 - version: 7.0.0(tslib@2.6.2)(typescript@5.5.2) + specifier: 8.0.0 + version: link:../ab-core '@testing-library/react': specifier: 14.2.1 version: 14.2.1(react-dom@18.2.0)(react@18.2.0) @@ -327,8 +327,8 @@ importers: libs/@guardian/core-web-vitals: devDependencies: '@guardian/libs': - specifier: 16.0.0 - version: 16.0.0(tslib@2.6.2)(typescript@5.5.2) + specifier: 18.0.0 + version: link:../libs '@types/jest': specifier: 29.5.8 version: 29.5.8 @@ -351,8 +351,8 @@ importers: specifier: 5.5.2 version: 5.5.2 web-vitals: - specifier: 4.2.0 - version: 4.2.0 + specifier: 4.2.1 + version: 4.2.1 wireit: specifier: 0.14.4 version: 0.14.4 @@ -435,8 +435,8 @@ importers: libs/@guardian/identity-auth: devDependencies: '@guardian/libs': - specifier: 16.0.0 - version: 16.0.0(tslib@2.6.2)(typescript@5.5.2) + specifier: 18.0.0 + version: link:../libs '@types/jest': specifier: 29.5.8 version: 29.5.8 @@ -468,11 +468,11 @@ importers: libs/@guardian/identity-auth-frontend: devDependencies: '@guardian/identity-auth': - specifier: 2.1.0 - version: 2.1.0(@guardian/libs@16.0.0)(tslib@2.6.2)(typescript@5.5.2) + specifier: 3.0.0 + version: link:../identity-auth '@guardian/libs': - specifier: 16.0.0 - version: 16.0.0(tslib@2.6.2)(typescript@5.5.2) + specifier: 18.0.0 + version: link:../libs '@types/jest': specifier: 29.5.8 version: 29.5.8 @@ -589,8 +589,8 @@ importers: specifier: workspace:* version: link:../design-tokens '@guardian/libs': - specifier: 16.1.3 - version: 16.1.3(tslib@2.6.2)(typescript@5.5.2) + specifier: 18.0.0 + version: link:../libs '@storybook/manager-api': specifier: 8.1.8 version: 8.1.8(react-dom@18.2.0)(react@18.2.0) @@ -676,10 +676,10 @@ importers: specifier: 11.11.3 version: 11.11.3(@types/react@18.2.11)(react@18.2.0) '@guardian/libs': - specifier: 17.0.0 - version: 17.0.0(tslib@2.6.2)(typescript@5.5.2) + specifier: 18.0.0 + version: link:../libs '@guardian/source': - specifier: 4.0.0 + specifier: 5.0.0 version: link:../source '@storybook/manager-api': specifier: 8.1.8 @@ -4366,73 +4366,6 @@ packages: resolution: {integrity: sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==} dev: true - /@guardian/ab-core@7.0.0(tslib@2.6.2)(typescript@5.5.2): - resolution: {integrity: sha512-TrkixEsgVLRkJO6Vj2r3IIVedMIQQU9vvnpiYIXLMTzWQ9t8x0fAyX/41HmVH9py7o261zASMH5hea/iyZIkBg==} - peerDependencies: - tslib: ^2.6.2 - typescript: ~5.3.3 - peerDependenciesMeta: - typescript: - optional: true - dependencies: - tslib: 2.6.2 - typescript: 5.5.2 - dev: true - - /@guardian/identity-auth@2.1.0(@guardian/libs@16.0.0)(tslib@2.6.2)(typescript@5.5.2): - resolution: {integrity: sha512-+AM0pcmRvRZUf92RYGJ2Q6KK1JpnQIxZ6pafsaBMGnF0IwiIk9DdfhaYZl0cyPQ3PwLTJJw2aSl453ivPAmHbw==} - peerDependencies: - '@guardian/libs': ^16.0.0 - tslib: ^2.6.2 - typescript: ~5.3.3 - peerDependenciesMeta: - typescript: - optional: true - dependencies: - '@guardian/libs': 16.0.0(tslib@2.6.2)(typescript@5.5.2) - tslib: 2.6.2 - typescript: 5.5.2 - dev: true - - /@guardian/libs@16.0.0(tslib@2.6.2)(typescript@5.5.2): - resolution: {integrity: sha512-2i9cN6htXnvABIGhfqJGb9Bh/DdQOayUjb5ruqBGTiXEeDBHztctdVsi7+rPfMlwyPxQ+0qYLhM19f6J94vvhQ==} - peerDependencies: - tslib: ^2.6.2 - typescript: ~5.3.3 - peerDependenciesMeta: - typescript: - optional: true - dependencies: - tslib: 2.6.2 - typescript: 5.5.2 - dev: true - - /@guardian/libs@16.1.3(tslib@2.6.2)(typescript@5.5.2): - resolution: {integrity: sha512-n8iv8De6lGSGcIyagbK79gv5tK5o+bRbsWSsYH+v6ob2HNwjVSkwY+Ang+snQWp6DPed+iHvnQQK5pWXnXMfOA==} - peerDependencies: - tslib: ^2.6.2 - typescript: ~5.3.3 - peerDependenciesMeta: - typescript: - optional: true - dependencies: - tslib: 2.6.2 - typescript: 5.5.2 - dev: true - - /@guardian/libs@17.0.0(tslib@2.6.2)(typescript@5.5.2): - resolution: {integrity: sha512-9/DshbBrF+0DyLuKiDIzRr9t/NYGuv5fDJVZwHs73H4AQBaC0er+9aKUjjRueDILKKefOaBVTerWm2Jw4YCmmQ==} - peerDependencies: - tslib: ^2.6.2 - typescript: ~5.3.3 - peerDependenciesMeta: - typescript: - optional: true - dependencies: - tslib: 2.6.2 - typescript: 5.5.2 - dev: true - /@humanwhocodes/config-array@0.11.14: resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} engines: {node: '>=10.10.0'} @@ -16186,8 +16119,8 @@ packages: resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} dev: true - /web-vitals@4.2.0: - resolution: {integrity: sha512-ohj72kbtVWCpKYMxcbJ+xaOBV3En76hW47j52dG+tEGG36LZQgfFw5yHl9xyjmosy3XUMn8d/GBUAy4YPM839w==} + /web-vitals@4.2.1: + resolution: {integrity: sha512-U6bAxeudnhDqcXNl50JC4hLlqox9DZnngxfISZm3DMZnonW35xtJOVUc091L+DOY+6hVZVpKXoiCP0RiT6339Q==} dev: true /webidl-conversions@3.0.1: