diff --git a/apps/ui-community/src/components/layouts/admin/components/community-detail.tsx b/apps/ui-community/src/components/layouts/admin/components/community-detail.tsx index 25012e58f..2ed6dbc5e 100644 --- a/apps/ui-community/src/components/layouts/admin/components/community-detail.tsx +++ b/apps/ui-community/src/components/layouts/admin/components/community-detail.tsx @@ -16,7 +16,7 @@ export const CommunityDetail: React.FC = (props) => { ); } - return <>; + return null; }; const domainDetails = () => { @@ -27,7 +27,7 @@ export const CommunityDetail: React.FC = (props) => { ); } - return <>; + return null; }; const handleDetails = () => { @@ -38,7 +38,7 @@ export const CommunityDetail: React.FC = (props) => { ); } - return <>; + return null; }; const { diff --git a/apps/ui-community/src/components/layouts/root/components/header.tsx b/apps/ui-community/src/components/layouts/root/components/header.tsx index 11f211a89..d476aa80b 100644 --- a/apps/ui-community/src/components/layouts/root/components/header.tsx +++ b/apps/ui-community/src/components/layouts/root/components/header.tsx @@ -4,7 +4,7 @@ import styles from './header.module.css'; export const Header: React.FC = () => { const handleLogin = () => { // biome-ignore lint:useLiteralKeys - window.location.href = `${import.meta.env['VITE_AAD_B2C_REDIRECT_URI']}`; + globalThis.location.href = `${import.meta.env['VITE_AAD_B2C_REDIRECT_URI']}`; }; const { @@ -12,15 +12,13 @@ export const Header: React.FC = () => { } = theme.useToken(); return ( - <> -
- -
- +
+ +
); }; diff --git a/apps/ui-community/src/components/ui/organisms/dropdown-menu/communities-dropdown.tsx b/apps/ui-community/src/components/ui/organisms/dropdown-menu/communities-dropdown.tsx index ecdb16629..8b0d18d15 100644 --- a/apps/ui-community/src/components/ui/organisms/dropdown-menu/communities-dropdown.tsx +++ b/apps/ui-community/src/components/ui/organisms/dropdown-menu/communities-dropdown.tsx @@ -36,13 +36,11 @@ export const CommunitiesDropdown: React.FC = ( if (!communityId) return; // Initialize community in itemsMap if it doesn't exist - if (!itemsMap[communityId]) { - itemsMap[communityId] = { - key: communityId, - label: member?.community?.name, - children: [], - }; - } + itemsMap[communityId] ??= { + key: communityId, + label: member?.community?.name, + children: [], + }; // Add member to the community's children const memberPath = `/community/${communityId}/member/${member?.id}`; @@ -77,9 +75,9 @@ export const CommunitiesDropdown: React.FC = ( children: { key: string; label: string; onClick: () => void }[]; }; } = {}; - props.data.members?.forEach((member: Member) => - populateItems(member, itemsMap), - ); + props.data.members?.forEach((member: Member) => { + populateItems(member, itemsMap); + }); const items: MenuProps['items'] = Object.values(itemsMap); diff --git a/biome.json b/biome.json index 65922d80f..b59145a7f 100644 --- a/biome.json +++ b/biome.json @@ -1,12 +1,16 @@ { - "$schema": "https://biomejs.dev/schemas/2.0.0/schema.json", + "$schema": "https://biomejs.dev/schemas/2.4.2/schema.json", "vcs": { "enabled": false, "clientKind": "git", "useIgnoreFile": false }, - "files": { "ignoreUnknown": false }, - "css": { "parser": { "cssModules": true } }, + "files": { + "ignoreUnknown": false, + "includes": ["**", "!!build", "!**/generated.tsx"] + }, + "css": { "parser": { "cssModules": true } }, "formatter": { "enabled": true, "indentStyle": "tab", - "indentWidth": 2 + "indentWidth": 2, + "lineWidth": 230 }, "linter": { "enabled": true, @@ -91,18 +95,17 @@ } }, "includes": [ - "apps/**", - "packages/**", - "build-pipeline/scripts/**", + "**/src/**", "!*.config.*", "!**/*.config.*", "!**/node_modules/**", "!**/dist/**", "!**/*.d.ts", "!**/package.json", - "!**/coverage/**", - "!**/generated.ts", - "!**/generated.tsx" + "!**/coverage/**", + "!**/generated.ts", + "!**/generated.tsx", + "!**/App.css" ] }, "javascript": { "formatter": { "quoteStyle": "single" }, "globals": [] }, @@ -140,7 +143,10 @@ } }, { "includes": ["**/src/**/*.ts"], "javascript": { "globals": [] } }, - { "includes": ["build-pipeline/scripts/**/*.{c|m}js"], "linter": { "rules": { "style": { "noCommonJs": "off" } } } }, + { + "includes": ["build-pipeline/scripts/**/*.{c|m}js"], + "linter": { "rules": { "style": { "noCommonJs": "off" } } } + }, { "includes": ["packages/cellix/domain-seedwork/**/*.ts"], "linter": { @@ -159,10 +165,16 @@ "performance": { "noBarrelFile": "error", "noReExportAll": "error" } } } + }, + { + "includes": ["tailwind.config.js", "craco.config.js"], + "linter": { + "enabled": false + } } ], "assist": { "enabled": true, "actions": { "source": { "organizeImports": "on" } } } -} +} \ No newline at end of file diff --git a/package.json b/package.json index 206e4c080..593bb8003 100644 --- a/package.json +++ b/package.json @@ -52,7 +52,7 @@ }, "devDependencies": { "@amiceli/vitest-cucumber": "^5.1.2", - "@biomejs/biome": "2.0.0", + "@biomejs/biome": "^2.4.2", "@graphql-codegen/cli": "^5.0.7", "@graphql-codegen/introspection": "^4.0.3", "@graphql-codegen/typed-document-node": "^5.1.2", @@ -85,7 +85,8 @@ }, "overrides": { "vite": "catalog:", - "jiti": "2.6.1" + "jiti": "2.6.1", + "minimatch": "10.2.1" } } } diff --git a/packages/cellix/mongoose-seedwork/src/mongoose-seedwork/mongoose-prop-array.ts b/packages/cellix/mongoose-seedwork/src/mongoose-seedwork/mongoose-prop-array.ts index 2c26505cc..abbfacbe9 100644 --- a/packages/cellix/mongoose-seedwork/src/mongoose-seedwork/mongoose-prop-array.ts +++ b/packages/cellix/mongoose-seedwork/src/mongoose-seedwork/mongoose-prop-array.ts @@ -46,7 +46,9 @@ export class MongoosePropArray< } removeAll(): void { const ids = this.docArray.map((doc) => doc._id); - ids.forEach((id) => this.docArray.pull({ _id: id })); + ids.forEach((id) => { + this.docArray.pull({ _id: id }); + }); } /** * Creates a new Mongoose document with a generated ObjectId, adds it to the document array, @@ -61,11 +63,6 @@ export class MongoosePropArray< * - The document array is mutated by this operation. */ getNewItem(): propType { - /* - if (!this.docArray) { - this.docArray = new Types.DocumentArray([]); - } - */ const item = this.docArray.create({ _id: new Types.ObjectId() }); this.docArray.push(item); return new this.adapter(item); diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 61596c59c..934da1e54 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -37,6 +37,7 @@ catalogs: overrides: vite: 7.3.1 jiti: 2.6.1 + minimatch: 10.2.1 importers: @@ -46,8 +47,8 @@ importers: specifier: ^5.1.2 version: 5.2.1(vitest@3.2.4) '@biomejs/biome': - specifier: 2.0.0 - version: 2.0.0 + specifier: ^2.4.2 + version: 2.4.2 '@graphql-codegen/cli': specifier: ^5.0.7 version: 5.0.7(@parcel/watcher@2.5.1)(@types/node@24.10.1)(graphql@16.12.0)(typescript@5.9.3) @@ -2155,55 +2156,55 @@ packages: resolution: {integrity: sha512-6zABk/ECA/QYSCQ1NGiVwwbQerUCZ+TQbp64Q3AgmfNvurHH0j8TtXa1qbShXA6qqkpAj4V5W8pP6mLe1mcMqA==} engines: {node: '>=18'} - '@biomejs/biome@2.0.0': - resolution: {integrity: sha512-BlUoXEOI/UQTDEj/pVfnkMo8SrZw3oOWBDrXYFT43V7HTkIUDkBRY53IC5Jx1QkZbaB+0ai1wJIfYwp9+qaJTQ==} + '@biomejs/biome@2.4.2': + resolution: {integrity: sha512-vVE/FqLxNLbvYnFDYg3Xfrh1UdFhmPT5i+yPT9GE2nTUgI4rkqo5krw5wK19YHBd7aE7J6r91RRmb8RWwkjy6w==} engines: {node: '>=14.21.3'} hasBin: true - '@biomejs/cli-darwin-arm64@2.0.0': - resolution: {integrity: sha512-QvqWYtFFhhxdf8jMAdJzXW+Frc7X8XsnHQLY+TBM1fnT1TfeV/v9vsFI5L2J7GH6qN1+QEEJ19jHibCY2Ypplw==} + '@biomejs/cli-darwin-arm64@2.4.2': + resolution: {integrity: sha512-3pEcKCP/1POKyaZZhXcxFl3+d9njmeAihZ17k8lL/1vk+6e0Cbf0yPzKItFiT+5Yh6TQA4uKvnlqe0oVZwRxCA==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [darwin] - '@biomejs/cli-darwin-x64@2.0.0': - resolution: {integrity: sha512-5JFhls1EfmuIH4QGFPlNpxJQFC6ic3X1ltcoLN+eSRRIPr6H/lUS1ttuD0Fj7rPgPhZqopK/jfH8UVj/1hIsQw==} + '@biomejs/cli-darwin-x64@2.4.2': + resolution: {integrity: sha512-P7hK1jLVny+0R9UwyGcECxO6sjETxfPyBm/1dmFjnDOHgdDPjPqozByunrwh4xPKld8sxOr5eAsSqal5uKgeBg==} engines: {node: '>=14.21.3'} cpu: [x64] os: [darwin] - '@biomejs/cli-linux-arm64-musl@2.0.0': - resolution: {integrity: sha512-Bxsz8ki8+b3PytMnS5SgrGV+mbAWwIxI3ydChb/d1rURlJTMdxTTq5LTebUnlsUWAX6OvJuFeiVq9Gjn1YbCyA==} + '@biomejs/cli-linux-arm64-musl@2.4.2': + resolution: {integrity: sha512-/x04YK9+7erw6tYEcJv9WXoBHcULI/wMOvNdAyE9S3JStZZ9yJyV67sWAI+90UHuDo/BDhq0d96LDqGlSVv7WA==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] - '@biomejs/cli-linux-arm64@2.0.0': - resolution: {integrity: sha512-BAH4QVi06TzAbVchXdJPsL0Z/P87jOfes15rI+p3EX9/EGTfIjaQ9lBVlHunxcmoptaA5y1Hdb9UYojIhmnjIw==} + '@biomejs/cli-linux-arm64@2.4.2': + resolution: {integrity: sha512-DI3Mi7GT2zYNgUTDEbSjl3e1KhoP76OjQdm8JpvZYZWtVDRyLd3w8llSr2TWk1z+U3P44kUBWY3X7H9MD1/DGQ==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [linux] - '@biomejs/cli-linux-x64-musl@2.0.0': - resolution: {integrity: sha512-tiQ0ABxMJb9I6GlfNp0ulrTiQSFacJRJO8245FFwE3ty3bfsfxlU/miblzDIi+qNrgGsLq5wIZcVYGp4c+HXZA==} + '@biomejs/cli-linux-x64-musl@2.4.2': + resolution: {integrity: sha512-wbBmTkeAoAYbOQ33f6sfKG7pcRSydQiF+dTYOBjJsnXO2mWEOQHllKlC2YVnedqZFERp2WZhFUoO7TNRwnwEHQ==} engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] - '@biomejs/cli-linux-x64@2.0.0': - resolution: {integrity: sha512-09PcOGYTtkopWRm6mZ/B6Mr6UHdkniUgIG/jLBv+2J8Z61ezRE+xQmpi3yNgUrFIAU4lPA9atg7mhvE/5Bo7Wg==} + '@biomejs/cli-linux-x64@2.4.2': + resolution: {integrity: sha512-GK2ErnrKpWFigYP68cXiCHK4RTL4IUWhK92AFS3U28X/nuAL5+hTuy6hyobc8JZRSt+upXt1nXChK+tuHHx4mA==} engines: {node: '>=14.21.3'} cpu: [x64] os: [linux] - '@biomejs/cli-win32-arm64@2.0.0': - resolution: {integrity: sha512-vrTtuGu91xNTEQ5ZcMJBZuDlqr32DWU1r14UfePIGndF//s2WUAmer4FmgoPgruo76rprk37e8S2A2c0psXdxw==} + '@biomejs/cli-win32-arm64@2.4.2': + resolution: {integrity: sha512-k2uqwLYrNNxnaoiW3RJxoMGnbKda8FuCmtYG3cOtVljs3CzWxaTR+AoXwKGHscC9thax9R4kOrtWqWN0+KdPTw==} engines: {node: '>=14.21.3'} cpu: [arm64] os: [win32] - '@biomejs/cli-win32-x64@2.0.0': - resolution: {integrity: sha512-2USVQ0hklNsph/KIR72ZdeptyXNnQ3JdzPn3NbjI4Sna34CnxeiYAaZcZzXPDl5PYNFBivV4xmvT3Z3rTmyDBg==} + '@biomejs/cli-win32-x64@2.4.2': + resolution: {integrity: sha512-9ma7C4g8Sq3cBlRJD2yrsHXB1mnnEBdpy7PhvFrylQWQb4PoyCmPucdX7frvsSBQuFtIiKCrolPl/8tCZrKvgQ==} engines: {node: '>=14.21.3'} cpu: [x64] os: [win32] @@ -3448,14 +3449,6 @@ packages: '@types/node': optional: true - '@isaacs/balanced-match@4.0.1': - resolution: {integrity: sha512-yzMTt9lEb8Gv7zRioUilSglI0c0smZ9k5D65677DLWLtWJaXIS3CqcGyUFByYKlnUj6TkjLVs54fBl6+TiGQDQ==} - engines: {node: 20 || >=22} - - '@isaacs/brace-expansion@5.0.0': - resolution: {integrity: sha512-ZT55BDLV0yv0RBm2czMiZ+SqCGO7AvmOM3G/w2xhVPH+te0aKgFjmBvGlL1dH+ql2tgGO3MVrbb3jCKyvpgnxA==} - engines: {node: 20 || >=22} - '@isaacs/cliui@8.0.2': resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==} engines: {node: '>=12'} @@ -5362,8 +5355,9 @@ packages: bail@2.0.2: resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} - balanced-match@1.0.2: - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} + balanced-match@4.0.3: + resolution: {integrity: sha512-1pHv8LX9CpKut1Zp4EXey7Z8OfH11ONNH6Dhi2WDUt31VVZFXZzKwXcysBgqSumFCmR+0dqjMK5v5JiFHzi0+g==} + engines: {node: 20 || >=22} bare-events@2.8.2: resolution: {integrity: sha512-riJjyv1/mHLIPX4RwiK+oW9/4c3TEUeORHKefKAKnZ5kyslbN+HXowtbaVEqt4IMUB7OXlfixcs6gsFeo/jhiQ==} @@ -5430,11 +5424,9 @@ packages: resolution: {integrity: sha512-2hCgjEmP8YLWQ130n2FerGv7rYpfBmnmp9Uy2Le1vge6X3gZIfSmEzP5QTDElFxcvVcXlEn8Aq6MU/PZygIOog==} engines: {node: '>=14.16'} - brace-expansion@1.1.12: - resolution: {integrity: sha512-9T9UjW3r0UW5c1Q7GTwllptXwhvYmEzFhzMfZ9H7FQWt+uZePjZPjBP/W1ZEyZ1twGWom5/56TF4lPcqjnDHcg==} - - brace-expansion@2.0.2: - resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} + brace-expansion@5.0.2: + resolution: {integrity: sha512-Pdk8c9poy+YhOgVWw1JNN22/HcivgKWwpxKq04M/jTmHyCZn12WPJebZxdjSa5TmBqISrUSgNYU3eRORljfCCw==} + engines: {node: 20 || >=22} braces@3.0.3: resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} @@ -5786,9 +5778,6 @@ packages: compute-scroll-into-view@3.1.1: resolution: {integrity: sha512-VRhuHOLoKYOy4UbilLbUzbYg93XLjv2PncJC50EuTWPA3gaja1UjBsUP/D/9/juV3vQFr6XBEzn9KCAHdUvOHw==} - concat-map@0.0.1: - resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} - concurrently@9.2.1: resolution: {integrity: sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==} engines: {node: '>=18'} @@ -8252,17 +8241,10 @@ packages: minimalistic-assert@1.0.1: resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} - minimatch@10.1.1: - resolution: {integrity: sha512-enIvLvRAFZYXJzkCYG5RKmPfrFArdLv+R+lbQ53BmIMLIry74bjKzX6iHAm8WYamJkhSSEabrWN5D97XnKObjQ==} + minimatch@10.2.1: + resolution: {integrity: sha512-MClCe8IL5nRRmawL6ib/eT4oLyeKMGCghibcDWK+J0hh0Q8kqSdia6BvbRMVk6mPa6WqUa5uR2oxt6C5jd533A==} engines: {node: 20 || >=22} - minimatch@3.1.2: - resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==} - - minimatch@9.0.5: - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} - engines: {node: '>=16 || 14 >=14.17'} - minimist@1.2.8: resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==} @@ -12942,39 +12924,39 @@ snapshots: '@bcoe/v8-coverage@1.0.2': {} - '@biomejs/biome@2.0.0': + '@biomejs/biome@2.4.2': optionalDependencies: - '@biomejs/cli-darwin-arm64': 2.0.0 - '@biomejs/cli-darwin-x64': 2.0.0 - '@biomejs/cli-linux-arm64': 2.0.0 - '@biomejs/cli-linux-arm64-musl': 2.0.0 - '@biomejs/cli-linux-x64': 2.0.0 - '@biomejs/cli-linux-x64-musl': 2.0.0 - '@biomejs/cli-win32-arm64': 2.0.0 - '@biomejs/cli-win32-x64': 2.0.0 - - '@biomejs/cli-darwin-arm64@2.0.0': + '@biomejs/cli-darwin-arm64': 2.4.2 + '@biomejs/cli-darwin-x64': 2.4.2 + '@biomejs/cli-linux-arm64': 2.4.2 + '@biomejs/cli-linux-arm64-musl': 2.4.2 + '@biomejs/cli-linux-x64': 2.4.2 + '@biomejs/cli-linux-x64-musl': 2.4.2 + '@biomejs/cli-win32-arm64': 2.4.2 + '@biomejs/cli-win32-x64': 2.4.2 + + '@biomejs/cli-darwin-arm64@2.4.2': optional: true - '@biomejs/cli-darwin-x64@2.0.0': + '@biomejs/cli-darwin-x64@2.4.2': optional: true - '@biomejs/cli-linux-arm64-musl@2.0.0': + '@biomejs/cli-linux-arm64-musl@2.4.2': optional: true - '@biomejs/cli-linux-arm64@2.0.0': + '@biomejs/cli-linux-arm64@2.4.2': optional: true - '@biomejs/cli-linux-x64-musl@2.0.0': + '@biomejs/cli-linux-x64-musl@2.4.2': optional: true - '@biomejs/cli-linux-x64@2.0.0': + '@biomejs/cli-linux-x64@2.4.2': optional: true - '@biomejs/cli-win32-arm64@2.0.0': + '@biomejs/cli-win32-arm64@2.4.2': optional: true - '@biomejs/cli-win32-x64@2.0.0': + '@biomejs/cli-win32-x64@2.4.2': optional: true '@chromatic-com/storybook@4.1.3(storybook@9.1.17(@testing-library/dom@10.4.1)(vite@7.3.1(@types/node@24.10.1)(jiti@2.6.1)(less@4.4.2)(lightningcss@1.30.2)(terser@5.44.1)(tsx@4.21.0)(yaml@2.8.2)))': @@ -14963,12 +14945,6 @@ snapshots: optionalDependencies: '@types/node': 24.10.1 - '@isaacs/balanced-match@4.0.1': {} - - '@isaacs/brace-expansion@5.0.0': - dependencies: - '@isaacs/balanced-match': 4.0.1 - '@isaacs/cliui@8.0.2': dependencies: string-width: 5.1.2 @@ -16326,7 +16302,7 @@ snapshots: '@ts-morph/common@0.27.0': dependencies: fast-glob: 3.3.3 - minimatch: 10.1.1 + minimatch: 10.2.1 path-browserify: 1.0.1 '@tybys/wasm-util@0.10.1': @@ -17062,7 +17038,7 @@ snapshots: archunit@2.1.63: dependencies: '@zerollup/ts-helpers': 1.7.18(typescript@5.9.3) - minimatch: 10.1.1 + minimatch: 10.2.1 plantuml-parser: 0.4.0 typescript: 5.9.3 @@ -17280,7 +17256,7 @@ snapshots: bail@2.0.2: {} - balanced-match@1.0.2: {} + balanced-match@4.0.3: {} bare-events@2.8.2: {} @@ -17377,14 +17353,9 @@ snapshots: widest-line: 4.0.1 wrap-ansi: 8.1.0 - brace-expansion@1.1.12: - dependencies: - balanced-match: 1.0.2 - concat-map: 0.0.1 - - brace-expansion@2.0.2: + brace-expansion@5.0.2: dependencies: - balanced-match: 1.0.2 + balanced-match: 4.0.3 braces@3.0.3: dependencies: @@ -17737,8 +17708,6 @@ snapshots: compute-scroll-into-view@3.1.1: {} - concat-map@0.0.1: {} - concurrently@9.2.1: dependencies: chalk: 4.1.2 @@ -18884,7 +18853,7 @@ snapshots: dependencies: foreground-child: 3.3.1 jackspeak: 3.4.3 - minimatch: 9.0.5 + minimatch: 10.2.1 minipass: 7.1.2 package-json-from-dist: 1.0.1 path-scurry: 1.11.1 @@ -18893,14 +18862,14 @@ snapshots: dependencies: foreground-child: 3.3.1 jackspeak: 4.1.1 - minimatch: 10.1.1 + minimatch: 10.2.1 minipass: 7.1.2 package-json-from-dist: 1.0.1 path-scurry: 2.0.1 glob@13.0.0: dependencies: - minimatch: 10.1.1 + minimatch: 10.2.1 minipass: 7.1.2 path-scurry: 2.0.1 @@ -18909,7 +18878,7 @@ snapshots: fs.realpath: 1.0.0 inflight: 1.0.6 inherits: 2.0.4 - minimatch: 3.1.2 + minimatch: 10.2.1 once: 1.4.0 path-is-absolute: 1.0.1 @@ -18988,7 +18957,7 @@ snapshots: cosmiconfig: 8.3.6(typescript@5.9.3) graphql: 16.12.0 jiti: 2.6.1 - minimatch: 9.0.5 + minimatch: 10.2.1 string-env-interpolation: 1.0.1 tslib: 2.8.1 transitivePeerDependencies: @@ -20707,17 +20676,9 @@ snapshots: minimalistic-assert@1.0.1: {} - minimatch@10.1.1: - dependencies: - '@isaacs/brace-expansion': 5.0.0 - - minimatch@3.1.2: - dependencies: - brace-expansion: 1.1.12 - - minimatch@9.0.5: + minimatch@10.2.1: dependencies: - brace-expansion: 2.0.2 + brace-expansion: 5.0.2 minimist@1.2.8: {} @@ -22882,7 +22843,7 @@ snapshots: bytes: 3.0.0 content-disposition: 0.5.2 mime-types: 2.1.18 - minimatch: 3.1.2 + minimatch: 10.2.1 path-is-inside: 1.0.2 path-to-regexp: 3.3.0 range-parser: 1.2.0 @@ -23463,7 +23424,7 @@ snapshots: dependencies: '@istanbuljs/schema': 0.1.3 glob: 10.5.0 - minimatch: 9.0.5 + minimatch: 10.2.1 text-decoder@1.2.3: dependencies: