From 46aa3554eb18a92e4e485d8767b84f67f37e1425 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jul 2024 13:31:22 -0700 Subject: [PATCH] [JS] bump: (deps-dev): Bump the development group in /js with 3 updates (#1841) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit #minor Bumps the development group in /js with 3 updates: [@azure/logger](https://github.com/Azure/azure-sdk-for-js), [prettier](https://github.com/prettier/prettier) and [rimraf](https://github.com/isaacs/rimraf). Updates `@azure/logger` from 1.1.2 to 1.1.3
Commits

Updates `prettier` from 3.3.2 to 3.3.3
Release notes

Sourced from prettier's releases.

3.3.3

🔗 Changelog

Changelog

Sourced from prettier's changelog.

3.3.3

diff

Add parentheses for nullish coalescing in ternary (#16391 by @​cdignam-segment)

This change adds clarity to operator precedence.

// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.2
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;

// Prettier 3.3.3
foo ? (bar ?? foo) : baz;
(foo ?? bar) ? a : b;
a ? b : (foo ?? bar);

Add parentheses for decorator expressions (#16458 by @​y-schneider)

Prevent parentheses around member expressions or tagged template literals from being removed to follow the stricter parsing rules of TypeScript 5.5.

// Input
@(foo`tagged template`)
class X {}

// Prettier 3.3.2
@​footagged template
class X {}

// Prettier 3.3.3
@(footagged template)
class X {}

Support @let declaration syntax (#16474 by @​sosukesuzuki)

Adds support for Angular v18 @let declaration syntax.

Please see the following code example. The @let declaration allows you to define local variables within the template:

... (truncated)

Commits

Updates `rimraf` from 5.0.8 to 5.0.9
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) ---
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- js/package.json | 6 ++--- js/packages/teams-ai/package.json | 2 +- .../01.getting-started/a.echoBot/package.json | 4 ++-- .../package.json | 4 ++-- .../b.adaptiveCards.typeAheadBot/package.json | 4 ++-- .../a.twentyQuestions/package.json | 4 ++-- .../b.AI-messageExtensions/package.json | 4 ++-- .../c.actionMapping-lightBot/package.json | 4 ++-- .../d.chainedActions-listBot/package.json | 4 ++-- .../e.customModel-LLAMA/package.json | 4 ++-- .../f.chatModeration/package.json | 2 +- .../04.ai-apps/a.teamsChefBot/package.json | 4 ++-- .../04.ai-apps/b.devOpsBot/package.json | 4 ++-- .../c.vision-cardGazer/package.json | 4 ++-- .../d.assistants-mathBot/package.json | 4 ++-- .../e.assistants-orderBot/package.json | 4 ++-- js/samples/04.ai-apps/f.whoBot/package.json | 4 ++-- .../g.datasource-azureAISearch/package.json | 4 ++-- .../h.datasource-azureOpenAI/package.json | 4 ++-- .../a.oauth-adaptiveCard/package.json | 4 ++-- .../b.oauth-bot/package.json | 4 ++-- .../c.oauth-messageExtension/package.json | 4 ++-- .../d.teamsSSO-bot/package.json | 4 ++-- .../e.teamsSSO-messageExtension/package.json | 4 ++-- js/yarn.lock | 24 +++++++++---------- 25 files changed, 59 insertions(+), 59 deletions(-) diff --git a/js/package.json b/js/package.json index b3c74d545..81c036b15 100644 --- a/js/package.json +++ b/js/package.json @@ -24,7 +24,7 @@ "openai": "4.41.0" }, "devDependencies": { - "@azure/logger": "^1.1.2", + "@azure/logger": "^1.1.3", "@azure/ms-rest-js": "2.7.0", "@microsoft/api-extractor": "^7.47.0", "@standardlabs/is-private": "^1.0.1", @@ -53,11 +53,11 @@ "ms-rest-azure": "^3.0.2", "npm-run-all": "^4.1.5", "nyc": "^15.1.0", - "prettier": "^3.3.2", + "prettier": "^3.3.3", "proxyquire": "^2.1.3", "read-text-file": "^1.1.0", "replace-in-file": "^4.1.0", - "rimraf": "^5.0.8", + "rimraf": "^5.0.9", "shx": "^0.3.4", "sinon": "^16.1.3", "source-map-support": "^0.5.19", diff --git a/js/packages/teams-ai/package.json b/js/packages/teams-ai/package.json index 5f4fc5c50..e4c4f41f4 100644 --- a/js/packages/teams-ai/package.json +++ b/js/packages/teams-ai/package.json @@ -58,7 +58,7 @@ "jsonwebtoken": "^9.0.2", "mocha": "10.6.0", "nyc": "^15.1.0", - "rimraf": "5.0.8", + "rimraf": "5.0.9", "shx": "^0.3.4", "ts-mocha": "10.0.0", "typescript": "^5.5.3" diff --git a/js/samples/01.getting-started/a.echoBot/package.json b/js/samples/01.getting-started/a.echoBot/package.json index 700d3ade3..01eaddf58 100644 --- a/js/samples/01.getting-started/a.echoBot/package.json +++ b/js/samples/01.getting-started/a.echoBot/package.json @@ -33,8 +33,8 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "typescript": "^5.5.3", "ts-node": "^10.9.2" } diff --git a/js/samples/02.teams-features/a.messageExtensions.searchCommand/package.json b/js/samples/02.teams-features/a.messageExtensions.searchCommand/package.json index 8c6383808..890d1b9da 100644 --- a/js/samples/02.teams-features/a.messageExtensions.searchCommand/package.json +++ b/js/samples/02.teams-features/a.messageExtensions.searchCommand/package.json @@ -34,8 +34,8 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "typescript": "^5.5.3", "ts-node": "^10.9.2" } diff --git a/js/samples/02.teams-features/b.adaptiveCards.typeAheadBot/package.json b/js/samples/02.teams-features/b.adaptiveCards.typeAheadBot/package.json index 02eecd8de..518eeca5e 100644 --- a/js/samples/02.teams-features/b.adaptiveCards.typeAheadBot/package.json +++ b/js/samples/02.teams-features/b.adaptiveCards.typeAheadBot/package.json @@ -34,8 +34,8 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "typescript": "^5.5.3", "ts-node": "^10.9.2" } diff --git a/js/samples/03.ai-concepts/a.twentyQuestions/package.json b/js/samples/03.ai-concepts/a.twentyQuestions/package.json index e78695614..903f6a020 100644 --- a/js/samples/03.ai-concepts/a.twentyQuestions/package.json +++ b/js/samples/03.ai-concepts/a.twentyQuestions/package.json @@ -33,8 +33,8 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "typescript": "^5.5.3", "shx": "^0.3.4", "ts-node": "^10.9.2" diff --git a/js/samples/03.ai-concepts/b.AI-messageExtensions/package.json b/js/samples/03.ai-concepts/b.AI-messageExtensions/package.json index 10708c808..eaac9684d 100644 --- a/js/samples/03.ai-concepts/b.AI-messageExtensions/package.json +++ b/js/samples/03.ai-concepts/b.AI-messageExtensions/package.json @@ -33,8 +33,8 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "typescript": "^5.5.3", "shx": "^0.3.4", "ts-node": "^10.9.2" diff --git a/js/samples/03.ai-concepts/c.actionMapping-lightBot/package.json b/js/samples/03.ai-concepts/c.actionMapping-lightBot/package.json index 7f649ebfd..0bd558705 100644 --- a/js/samples/03.ai-concepts/c.actionMapping-lightBot/package.json +++ b/js/samples/03.ai-concepts/c.actionMapping-lightBot/package.json @@ -33,8 +33,8 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~1.19.4", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "typescript": "^5.5.3", "shx": "^0.3.4", "ts-node": "^10.9.2" diff --git a/js/samples/03.ai-concepts/d.chainedActions-listBot/package.json b/js/samples/03.ai-concepts/d.chainedActions-listBot/package.json index a3bbab649..b3b1ad749 100644 --- a/js/samples/03.ai-concepts/d.chainedActions-listBot/package.json +++ b/js/samples/03.ai-concepts/d.chainedActions-listBot/package.json @@ -34,8 +34,8 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~1.19.4", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "shx": "^0.3.4", "ts-node": "^10.9.2", "typescript": "^5.5.3" diff --git a/js/samples/03.ai-concepts/e.customModel-LLAMA/package.json b/js/samples/03.ai-concepts/e.customModel-LLAMA/package.json index ecae2b9fa..df4ba88b3 100644 --- a/js/samples/03.ai-concepts/e.customModel-LLAMA/package.json +++ b/js/samples/03.ai-concepts/e.customModel-LLAMA/package.json @@ -36,8 +36,8 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~1.19.4", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "typescript": "^5.5.3", "shx": "^0.3.4", "ts-node": "^10.9.2" diff --git a/js/samples/03.ai-concepts/f.chatModeration/package.json b/js/samples/03.ai-concepts/f.chatModeration/package.json index e0e548963..fd5481f1d 100644 --- a/js/samples/03.ai-concepts/f.chatModeration/package.json +++ b/js/samples/03.ai-concepts/f.chatModeration/package.json @@ -35,7 +35,7 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", + "prettier": "^3.3.3", "shx": "^0.3.4", "ts-node": "^10.9.2", "typescript": "^5.5.3" diff --git a/js/samples/04.ai-apps/a.teamsChefBot/package.json b/js/samples/04.ai-apps/a.teamsChefBot/package.json index 9f8dddefd..0f9cfc37b 100644 --- a/js/samples/04.ai-apps/a.teamsChefBot/package.json +++ b/js/samples/04.ai-apps/a.teamsChefBot/package.json @@ -38,8 +38,8 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "ts-node": "^10.9.2", "typescript": "^5.5.3" } diff --git a/js/samples/04.ai-apps/b.devOpsBot/package.json b/js/samples/04.ai-apps/b.devOpsBot/package.json index 5a0b973cd..f75d9fce7 100644 --- a/js/samples/04.ai-apps/b.devOpsBot/package.json +++ b/js/samples/04.ai-apps/b.devOpsBot/package.json @@ -34,8 +34,8 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "shx": "^0.3.4", "ts-node": "^10.9.2", "typescript": "^5.5.3" diff --git a/js/samples/04.ai-apps/c.vision-cardGazer/package.json b/js/samples/04.ai-apps/c.vision-cardGazer/package.json index b99709e59..71e94113d 100644 --- a/js/samples/04.ai-apps/c.vision-cardGazer/package.json +++ b/js/samples/04.ai-apps/c.vision-cardGazer/package.json @@ -35,8 +35,8 @@ "@typescript-eslint/parser": "^6.21.0", "env-cmd": "^10.1.0", "eslint": "^8.57.0", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "nodemon": "~3.0.1", "ts-node": "^10.9.2", "typescript": "^5.5.3" diff --git a/js/samples/04.ai-apps/d.assistants-mathBot/package.json b/js/samples/04.ai-apps/d.assistants-mathBot/package.json index d25ebb9e9..7ac1e7b07 100644 --- a/js/samples/04.ai-apps/d.assistants-mathBot/package.json +++ b/js/samples/04.ai-apps/d.assistants-mathBot/package.json @@ -35,8 +35,8 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "ts-node": "^10.9.2", "typescript": "^5.5.3" } diff --git a/js/samples/04.ai-apps/e.assistants-orderBot/package.json b/js/samples/04.ai-apps/e.assistants-orderBot/package.json index d71b3b506..040073420 100644 --- a/js/samples/04.ai-apps/e.assistants-orderBot/package.json +++ b/js/samples/04.ai-apps/e.assistants-orderBot/package.json @@ -37,8 +37,8 @@ "eslint": "^8.57.0", "env-cmd": "^10.1.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "ts-node": "^10.9.2", "typescript": "^5.5.3" } diff --git a/js/samples/04.ai-apps/f.whoBot/package.json b/js/samples/04.ai-apps/f.whoBot/package.json index 067705f20..51625c5ed 100644 --- a/js/samples/04.ai-apps/f.whoBot/package.json +++ b/js/samples/04.ai-apps/f.whoBot/package.json @@ -35,8 +35,8 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "ts-node": "^10.9.2", "tsc-watch": "^6.2.0", "typescript": "^5.5.3" diff --git a/js/samples/04.ai-apps/g.datasource-azureAISearch/package.json b/js/samples/04.ai-apps/g.datasource-azureAISearch/package.json index 65b301b51..f0bd5158c 100644 --- a/js/samples/04.ai-apps/g.datasource-azureAISearch/package.json +++ b/js/samples/04.ai-apps/g.datasource-azureAISearch/package.json @@ -48,8 +48,8 @@ "env-cmd": "^10.1.0", "eslint": "^8.57.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "ts-node": "^10.9.2", "typescript": "^5.5.3" } diff --git a/js/samples/04.ai-apps/h.datasource-azureOpenAI/package.json b/js/samples/04.ai-apps/h.datasource-azureOpenAI/package.json index 240f2362f..a822a454a 100644 --- a/js/samples/04.ai-apps/h.datasource-azureOpenAI/package.json +++ b/js/samples/04.ai-apps/h.datasource-azureOpenAI/package.json @@ -48,8 +48,8 @@ "env-cmd": "^10.1.0", "eslint": "^8.57.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "ts-node": "^10.9.2", "typescript": "^5.5.3" } diff --git a/js/samples/05.authentication/a.oauth-adaptiveCard/package.json b/js/samples/05.authentication/a.oauth-adaptiveCard/package.json index d965aff48..a852eb870 100644 --- a/js/samples/05.authentication/a.oauth-adaptiveCard/package.json +++ b/js/samples/05.authentication/a.oauth-adaptiveCard/package.json @@ -36,8 +36,8 @@ "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "ts-node": "^10.9.2", "tsc-watch": "^6.2.0", "typescript": "^5.5.3" diff --git a/js/samples/05.authentication/b.oauth-bot/package.json b/js/samples/05.authentication/b.oauth-bot/package.json index e6dcf298a..408bbb262 100644 --- a/js/samples/05.authentication/b.oauth-bot/package.json +++ b/js/samples/05.authentication/b.oauth-bot/package.json @@ -34,8 +34,8 @@ "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "ts-node": "^10.9.2", "tsc-watch": "^6.2.0", "typescript": "^5.5.3" diff --git a/js/samples/05.authentication/c.oauth-messageExtension/package.json b/js/samples/05.authentication/c.oauth-messageExtension/package.json index 0026e6237..d7d1cf0a6 100644 --- a/js/samples/05.authentication/c.oauth-messageExtension/package.json +++ b/js/samples/05.authentication/c.oauth-messageExtension/package.json @@ -37,8 +37,8 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "ts-node": "^10.9.2", "tsc-watch": "^6.2.0", "typescript": "^5.5.3" diff --git a/js/samples/05.authentication/d.teamsSSO-bot/package.json b/js/samples/05.authentication/d.teamsSSO-bot/package.json index d1c48ecb9..a3e96e3a8 100644 --- a/js/samples/05.authentication/d.teamsSSO-bot/package.json +++ b/js/samples/05.authentication/d.teamsSSO-bot/package.json @@ -36,8 +36,8 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "ts-node": "^10.9.2", "tsc-watch": "^6.2.0", "typescript": "^5.5.3" diff --git a/js/samples/05.authentication/e.teamsSSO-messageExtension/package.json b/js/samples/05.authentication/e.teamsSSO-messageExtension/package.json index ff8e67788..094510192 100644 --- a/js/samples/05.authentication/e.teamsSSO-messageExtension/package.json +++ b/js/samples/05.authentication/e.teamsSSO-messageExtension/package.json @@ -39,8 +39,8 @@ "@typescript-eslint/parser": "^6.21.0", "eslint": "^8.57.0", "nodemon": "~3.0.1", - "prettier": "^3.3.2", - "rimraf": "^5.0.8", + "prettier": "^3.3.3", + "rimraf": "^5.0.9", "ts-node": "^10.9.2", "tsc-watch": "^6.2.0", "typescript": "^5.5.3" diff --git a/js/yarn.lock b/js/yarn.lock index 4913a2a22..68ea6eb48 100644 --- a/js/yarn.lock +++ b/js/yarn.lock @@ -238,10 +238,10 @@ "@azure/logger" "^1.0.0" tslib "^2.2.0" -"@azure/logger@^1.0.0", "@azure/logger@^1.0.4", "@azure/logger@^1.1.2": - version "1.1.2" - resolved "https://registry.yarnpkg.com/@azure/logger/-/logger-1.1.2.tgz#3f4b876cefad328dc14aff8b850d63b611e249dc" - integrity sha512-l170uE7bsKpIU6B/giRc9i4NI0Mj+tANMMMxf7Zi/5cKzEqPayP7+X1WPrG7e+91JgY8N+7K7nF2WOi7iVhXvg== +"@azure/logger@^1.0.0", "@azure/logger@^1.0.4", "@azure/logger@^1.1.3": + version "1.1.3" + resolved "https://registry.yarnpkg.com/@azure/logger/-/logger-1.1.3.tgz#09a8fd4850b9112865756e92d5e8b728ee457345" + integrity sha512-J8/cIKNQB1Fc9fuYqBVnrppiUtW+5WWJPCj/tAokC5LdSTwkWWttN+jsRgw9BLYD7JDBx7PceiqOBxJJ1tQz3Q== dependencies: tslib "^2.6.2" @@ -7887,10 +7887,10 @@ prettier-linter-helpers@^1.0.0: dependencies: fast-diff "^1.1.2" -prettier@^3.3.2: - version "3.3.2" - resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.2.tgz#03ff86dc7c835f2d2559ee76876a3914cec4a90a" - integrity sha512-rAVeHYMcv8ATV5d508CFdn+8/pHPpXeIid1DdrPwXnaAdH7cqjVbpJaT5eq4yRAFU/lsbwYwSF/n5iNrdJHPQA== +prettier@^3.3.3: + version "3.3.3" + resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.3.tgz#30c54fe0be0d8d12e6ae61dbb10109ea00d53105" + integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew== pretty-hrtime@^1.0.2: version "1.0.3" @@ -8423,10 +8423,10 @@ rfc4648@^1.5.2: resolved "https://registry.yarnpkg.com/rfc4648/-/rfc4648-1.5.3.tgz#e62b81736c10361ca614efe618a566e93d0b41c0" integrity sha512-MjOWxM065+WswwnmNONOT+bD1nXzY9Km6u3kzvnx8F8/HXGZdz3T6e6vZJ8Q/RIMUSp/nxqjH3GwvJDy8ijeQQ== -rimraf@5.0.8, rimraf@^5.0.8: - version "5.0.8" - resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-5.0.8.tgz#9d4d0ef5106817102b14fdbbf01cf29545e99a6c" - integrity sha512-XSh0V2/yNhDEi8HwdIefD8MLgs4LQXPag/nEJWs3YUc3Upn+UHa1GyIkEg9xSSNt7HnkO5FjTvmcRzgf+8UZuw== +rimraf@5.0.9, rimraf@^5.0.9: + version "5.0.9" + resolved "https://registry.yarnpkg.com/rimraf/-/rimraf-5.0.9.tgz#c3baa1b886eadc2ec7981a06a593c3d01134ffe9" + integrity sha512-3i7b8OcswU6CpU8Ej89quJD4O98id7TtVM5U4Mybh84zQXdrFmDLouWBEEaD/QfO3gDDfH+AGFCGsR7kngzQnA== dependencies: glob "^10.3.7"