Skip to content

Commit

Permalink
[JS] bump: (deps-dev): Bump the development group in /js with 3 updat…
Browse files Browse the repository at this point in the history
…es (#1841)

#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
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/Azure/azure-sdk-for-js/commit/d33192b9818f9bb8e243e84fc4452bbcaa7d3220"><code>d33192b</code></a>
[core-logger] Prepare for 2024 July release (<a
href="https://redirect.github.com/Azure/azure-sdk-for-js/issues/30351">#30351</a>)</li>
<li><a
href="https://github.com/Azure/azure-sdk-for-js/commit/6aa191c96734adfb5c559e9250583ecbde3a061a"><code>6aa191c</code></a>
Update Samples link in Azure Identity README (<a
href="https://redirect.github.com/Azure/azure-sdk-for-js/issues/30346">#30346</a>)</li>
<li><a
href="https://github.com/Azure/azure-sdk-for-js/commit/6e5ec164500e4c4d272210c1d3c680f4308b45f8"><code>6e5ec16</code></a>
[samples][identity] remove v3-beta samples directory (<a
href="https://redirect.github.com/Azure/azure-sdk-for-js/issues/30329">#30329</a>)</li>
<li><a
href="https://github.com/Azure/azure-sdk-for-js/commit/d13d9d36f9a5bfa7aa32eb1bb8d3cdf476ea9a5e"><code>d13d9d3</code></a>
[CODEOWNERS] add an entry for ai-translation-document-rest (<a
href="https://redirect.github.com/Azure/azure-sdk-for-js/issues/30330">#30330</a>)</li>
<li><a
href="https://github.com/Azure/azure-sdk-for-js/commit/1cab34e443248070169d950d470656c24146e0d9"><code>1cab34e</code></a>
[<code>@​azure/monitor-query</code>][<code>@​azure/monitor-ingestion</code>]
Migrate Monitor Packages awa...</li>
<li><a
href="https://github.com/Azure/azure-sdk-for-js/commit/7f676765ce4b654e9a757b40f591a93b4cc45ec0"><code>7f67676</code></a>
[core] prepare for 2024 July release (<a
href="https://redirect.github.com/Azure/azure-sdk-for-js/issues/30336">#30336</a>)</li>
<li><a
href="https://github.com/Azure/azure-sdk-for-js/commit/d3446abaf10bcf6448e6532be352b8e6597d8c58"><code>d3446ab</code></a>
[Storage] fix broken unit-test after typescript 5.5.3 upgrade (<a
href="https://redirect.github.com/Azure/azure-sdk-for-js/issues/30334">#30334</a>)</li>
<li><a
href="https://github.com/Azure/azure-sdk-for-js/commit/8b5718945bfc57fe426cd2b77878f96181b7d421"><code>8b57189</code></a>
[generate-doc] skipping doc generation for non-package files (<a
href="https://redirect.github.com/Azure/azure-sdk-for-js/issues/30338">#30338</a>)</li>
<li><a
href="https://github.com/Azure/azure-sdk-for-js/commit/42dab5b48e15d679e421a87c56d17d2eb3be7a38"><code>42dab5b</code></a>
[Monitor OpenTelemetry Exporter] Fix OTel Version and Resolve Async
Issues wi...</li>
<li><a
href="https://github.com/Azure/azure-sdk-for-js/commit/e5df73e897046ac1d7a77faa49ea9b0095fd89b2"><code>e5df73e</code></a>
Post release automated changes for devcenter releases (<a
href="https://redirect.github.com/Azure/azure-sdk-for-js/issues/30335">#30335</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/Azure/azure-sdk-for-js/compare/@azure/logger_1.1.2...@azure/logger_1.1.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `prettier` from 3.3.2 to 3.3.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/prettier/prettier/releases">prettier's
releases</a>.</em></p>
<blockquote>
<h2>3.3.3</h2>
<p>🔗 <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md#333">Changelog</a></p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/prettier/prettier/blob/main/CHANGELOG.md">prettier's
changelog</a>.</em></p>
<blockquote>
<h1>3.3.3</h1>
<p><a
href="https://github.com/prettier/prettier/compare/3.3.2...3.3.3">diff</a></p>
<h4>Add parentheses for nullish coalescing in ternary (<a
href="https://redirect.github.com/prettier/prettier/pull/16391">#16391</a>
by <a
href="https://github.com/cdignam-segment"><code>@​cdignam-segment</code></a>)</h4>
<p>This change adds clarity to operator precedence.</p>
<!-- raw HTML omitted -->
<pre lang="js"><code>// Input
foo ? bar ?? foo : baz;
foo ?? bar ? a : b;
a ? b : foo ?? bar;
<p>// Prettier 3.3.2<br />
foo ? bar ?? foo : baz;<br />
foo ?? bar ? a : b;<br />
a ? b : foo ?? bar;</p>
<p>// Prettier 3.3.3<br />
foo ? (bar ?? foo) : baz;<br />
(foo ?? bar) ? a : b;<br />
a ? b : (foo ?? bar);<br />
</code></pre></p>
<h4>Add parentheses for decorator expressions (<a
href="https://redirect.github.com/prettier/prettier/pull/16458">#16458</a>
by <a
href="https://github.com/y-schneider"><code>@​y-schneider</code></a>)</h4>
<p>Prevent parentheses around member expressions or tagged template
literals from being removed to follow the stricter parsing rules of
TypeScript 5.5.</p>
<!-- raw HTML omitted -->
<pre lang="ts"><code>// Input
@(foo`tagged template`)
class X {}
<p>// Prettier 3.3.2<br />
<a href="https://github.com/foo"><code>@​foo</code></a><code>tagged
template</code><br />
class X {}</p>
<p>// Prettier 3.3.3<br />
@(foo<code>tagged template</code>)<br />
class X {}<br />
</code></pre></p>
<h4>Support <code>@let</code> declaration syntax (<a
href="https://redirect.github.com/prettier/prettier/pull/16474">#16474</a>
by <a
href="https://github.com/sosukesuzuki"><code>@​sosukesuzuki</code></a>)</h4>
<p>Adds support for Angular v18 <code>@let</code> declaration
syntax.</p>
<p>Please see the following code example. The <code>@let</code>
declaration allows you to define local variables within the
template:</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/prettier/prettier/commit/52829385bcc4d785e58ae2602c0b098a643523c9"><code>5282938</code></a>
Release 3.3.3</li>
<li><a
href="https://github.com/prettier/prettier/commit/9102b73d8cd01795e7ba5af8a476d500c5dbcf2c"><code>9102b73</code></a>
Add parentheses for decorator expressions (<a
href="https://redirect.github.com/prettier/prettier/issues/16458">#16458</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/6bbd46194e4db25025afd6fe2f8506a8a2d1e47e"><code>6bbd461</code></a>
chore(deps): update eslint related dependencies (<a
href="https://redirect.github.com/prettier/prettier/issues/16478">#16478</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/04b560fc4386ee2ba1fc7c611c7a78655d6e60da"><code>04b560f</code></a>
chore(deps): update dependency browserslist to v4.23.2 (<a
href="https://redirect.github.com/prettier/prettier/issues/16475">#16475</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/614f070ac5f8d30628cc6cbbca1dda0e080e41d9"><code>614f070</code></a>
chore(deps): update typescript-eslint to v8.0.0-alpha.41 (<a
href="https://redirect.github.com/prettier/prettier/issues/16477">#16477</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/d59a15ded901c6dd66c07cf508e14646a6f12cd9"><code>d59a15d</code></a>
chore(deps): update dependency npm-run-all2 to v6.2.2 (<a
href="https://redirect.github.com/prettier/prettier/issues/16476">#16476</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/5ca2fc9be8369bf8c96899e2e5e8f3264086645a"><code>5ca2fc9</code></a>
Support Angular <code>@let</code> declaration syntax (<a
href="https://redirect.github.com/prettier/prettier/issues/16474">#16474</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/bfcfdccdf892141ce9cfbc179493557157c24e4c"><code>bfcfdcc</code></a>
chore(deps): update babel to v7.24.8 (<a
href="https://redirect.github.com/prettier/prettier/issues/16472">#16472</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/977c161924efa328660fe1802b604de2bc2527ea"><code>977c161</code></a>
chore(deps): update dependency acorn to v8.12.1 (<a
href="https://redirect.github.com/prettier/prettier/issues/16464">#16464</a>)</li>
<li><a
href="https://github.com/prettier/prettier/commit/550606edf9f3c2e2d2c75f37f627c42030de34a3"><code>550606e</code></a>
chore(deps): update babel to v7.24.8 (<a
href="https://redirect.github.com/prettier/prettier/issues/16470">#16470</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/prettier/prettier/compare/3.3.2...3.3.3">compare
view</a></li>
</ul>
</details>
<br />

Updates `rimraf` from 5.0.8 to 5.0.9
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/isaacs/rimraf/commit/546c9ec50c0e94ac08af7188b02fc1dddfc5134e"><code>546c9ec</code></a>
5.0.9</li>
<li><a
href="https://github.com/isaacs/rimraf/commit/043338a50c7804146bf3c6970e148f21b58106aa"><code>043338a</code></a>
restore support for dead node versions</li>
<li>See full diff in <a
href="https://github.com/isaacs/rimraf/compare/v5.0.8...v5.0.9">compare
view</a></li>
</ul>
</details>
<br />


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)

---

<details>
<summary>Dependabot commands and options</summary>
<br />

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 <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name>` 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 <dependency name>` will remove all of the ignore
conditions of the specified dependency
- `@dependabot unignore <dependency name> <ignore condition>` will
remove the ignore condition of the specified dependency and ignore
conditions


</details>

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Jul 17, 2024
1 parent 5e663b0 commit 46aa355
Show file tree
Hide file tree
Showing 25 changed files with 59 additions and 59 deletions.
6 changes: 3 additions & 3 deletions js/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion js/packages/teams-ai/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions js/samples/01.getting-started/a.echoBot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
4 changes: 2 additions & 2 deletions js/samples/03.ai-concepts/a.twentyQuestions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions js/samples/03.ai-concepts/b.AI-messageExtensions/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions js/samples/03.ai-concepts/e.customModel-LLAMA/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion js/samples/03.ai-concepts/f.chatModeration/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions js/samples/04.ai-apps/a.teamsChefBot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
4 changes: 2 additions & 2 deletions js/samples/04.ai-apps/b.devOpsBot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions js/samples/04.ai-apps/c.vision-cardGazer/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions js/samples/04.ai-apps/d.assistants-mathBot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
4 changes: 2 additions & 2 deletions js/samples/04.ai-apps/e.assistants-orderBot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
4 changes: 2 additions & 2 deletions js/samples/04.ai-apps/f.whoBot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions js/samples/04.ai-apps/g.datasource-azureAISearch/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
4 changes: 2 additions & 2 deletions js/samples/04.ai-apps/h.datasource-azureOpenAI/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions js/samples/05.authentication/b.oauth-bot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
4 changes: 2 additions & 2 deletions js/samples/05.authentication/d.teamsSSO-bot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
24 changes: 12 additions & 12 deletions js/yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down Expand Up @@ -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"
Expand Down Expand Up @@ -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==

[email protected].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==
[email protected].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"

Expand Down

0 comments on commit 46aa355

Please sign in to comment.