Skip to content

Commit

Permalink
Bump the dev-dependencies group across 1 directory with 4 updates (#266)
Browse files Browse the repository at this point in the history
Bumps the dev-dependencies group with 4 updates in the / directory:
[@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node),
[cspell](https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell),
[@types/yargs](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/yargs)
and [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite).

Updates `@types/node` from 22.1.0 to 22.3.0
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node">compare
view</a></li>
</ul>
</details>
<br />

Updates `cspell` from 8.13.1 to 8.13.3
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/streetsidesoftware/cspell/releases">cspell's
releases</a>.</em></p>
<blockquote>
<h2>v8.13.3</h2>
<h2>Changes</h2>
<h2>Fixes</h2>
<!-- raw HTML omitted -->
<h3>fix: Try non-English suffix endings on word breaks (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/6066">#6066</a>)</h3>
<p>Related to <a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/6065">#6065</a>.</p>
<p>When breaking a camel case word into its parts there are two word
break patterns:</p>
<ul>
<li><code>regExpCamelCaseWordBreaks</code></li>
<li><code>regExpCamelCaseWordBreaksWithEnglishSuffix</code> is the
default pattern.
It is the same as <code>regExpCamelCaseWordBreaks</code>, but will not
split ALL CAPS words with English suffixes.</li>
</ul>
<p>Using just <code>regExpCamelCaseWordBreaks</code> misses unknown
4-letter words.
The code below was tried, but it missed flagging words like
<code>LSTMs</code>:</p>
<ul>
<li><code>LSTM</code> was caught.</li>
<li><code>LSTMs</code> was missed because it becomes <code>LST</code>
and <code>Ms</code>.</li>
</ul>
<pre lang="ts"><code>const results = _checkCamelCaseWord(vr,
regExpCamelCaseWordBreaks);
if (!results.length) return results;
const resultsEnglishBreaks = _checkCamelCaseWord(vr,
regExpCamelCaseWordBreaksWithEnglishSuffix);
return results.length &lt; resultsEnglishBreaks.length ? results :
resultsEnglishBreaks;
</code></pre>
<ul>
<li>Make sure the API doesn't change when adding functions to
<code>text.ts</code>.</li>
<li>Fix possible accent issue with wordSplitter (note, not an issue with
Normalized strings).</li>
</ul>
<hr />
<!-- raw HTML omitted -->
<h2>Dictionary Updates</h2>
<!-- raw HTML omitted -->
<h3>fix: Workflow Bot -- Update Dictionaries (main) (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/6070">#6070</a>)</h3>
<h1>Update Dictionaries (main)</h1>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/streetsidesoftware/cspell/blob/main/packages/cspell/CHANGELOG.md">cspell's
changelog</a>.</em></p>
<blockquote>
<h2><!-- raw HTML omitted -->8.13.3 (2024-08-12)<!-- raw HTML omitted
--></h2>
<ul>
<li>chore: Update Integration Test Performance Data (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/6079">#6079</a>)
(<a
href="https://github.com/streetsidesoftware/cspell/commit/dd28ef5">dd28ef5</a>),
closes <a
href="https://redirect.github.com/streetsidesoftware/cspell/issues/6079">#6079</a></li>
</ul>
<h2><!-- raw HTML omitted -->8.13.2 (2024-08-08)<!-- raw HTML omitted
--></h2>
<ul>
<li>chore: Update Integration Test Performance Data (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/6060">#6060</a>)
(<a
href="https://github.com/streetsidesoftware/cspell/commit/c766d18">c766d18</a>),
closes <a
href="https://redirect.github.com/streetsidesoftware/cspell/issues/6060">#6060</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/streetsidesoftware/cspell/commit/e017775a1d181b20abce3c6325f2527a7554a3a9"><code>e017775</code></a>
v8.13.3</li>
<li><a
href="https://github.com/streetsidesoftware/cspell/commit/ecfa89a654eaec78e68e13b1be30a9cd109d3d0d"><code>ecfa89a</code></a>
fix: Try non-English suffix endings on word breaks (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/6066">#6066</a>)</li>
<li><a
href="https://github.com/streetsidesoftware/cspell/commit/5c9aaf8829991e7d6d37355acb9b9685088bba14"><code>5c9aaf8</code></a>
v8.13.2</li>
<li><a
href="https://github.com/streetsidesoftware/cspell/commit/62d8b146ccdec34a58371660ab333df33d9fc52f"><code>62d8b14</code></a>
fix: Stop duplicate issue output. (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/6058">#6058</a>)</li>
<li><a
href="https://github.com/streetsidesoftware/cspell/commit/06a1a2bf42c0183f0d03c8b0d9cb28f524d86a6c"><code>06a1a2b</code></a>
fix: make sure reported issues are consistent. (<a
href="https://github.com/streetsidesoftware/cspell/tree/HEAD/packages/cspell/issues/6032">#6032</a>)</li>
<li>See full diff in <a
href="https://github.com/streetsidesoftware/cspell/commits/v8.13.3/packages/cspell">compare
view</a></li>
</ul>
</details>
<br />

Updates `@types/yargs` from 17.0.32 to 17.0.33
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/yargs">compare
view</a></li>
</ul>
</details>
<br />

Updates `vite` from 5.3.5 to 5.4.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/vitejs/vite/releases">vite's
releases</a>.</em></p>
<blockquote>
<h2>[email protected]</h2>
<p>Please refer to <a
href="https://github.com/vitejs/vite/blob/[email protected]/packages/create-vite/CHANGELOG.md">CHANGELOG.md</a>
for details.</p>
</blockquote>
</details>
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a
href="https://github.com/vitejs/vite/blob/main/packages/vite/CHANGELOG.md">vite's
changelog</a>.</em></p>
<blockquote>
<h2>5.4.0 (2024-08-07)</h2>
<ul>
<li>fix(build): windows platform build output path error (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17818">#17818</a>)
(<a
href="https://github.com/vitejs/vite/commit/6ae0615416762dd1b89393316308cf8edf115c34">6ae0615</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17818">#17818</a></li>
<li>fix(deps): update launch-editor to consume fix for windows paths (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17828">#17828</a>)
(<a
href="https://github.com/vitejs/vite/commit/cf2f90d4b9f9b16b8009b0f9d0d9f7e71e98c54d">cf2f90d</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17828">#17828</a></li>
<li>fix(ssr): fix <code>global</code> variable name conflict (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17809">#17809</a>)
(<a
href="https://github.com/vitejs/vite/commit/6aa220607b4f5457c1ef9ff68d75885a9abbdaf6">6aa2206</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17809">#17809</a></li>
<li>fix(worker): fix <code>importScripts</code> injection breaking iife
code (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17827">#17827</a>)
(<a
href="https://github.com/vitejs/vite/commit/bb4ba9f448da01782f585369f80c4517da087000">bb4ba9f</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17827">#17827</a></li>
<li>chore: bump typescript-eslint to v8 (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17624">#17624</a>)
(<a
href="https://github.com/vitejs/vite/commit/d1891fda026d27f53409dec97e156a59da609196">d1891fd</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17624">#17624</a></li>
<li>chore(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17820">#17820</a>)
(<a
href="https://github.com/vitejs/vite/commit/bb2f8bb55fdd64e4f16831ff98921c221a5e734a">bb2f8bb</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17820">#17820</a></li>
<li>perf(ssr): do a single-pass over AST with node cache arrays (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17812">#17812</a>)
(<a
href="https://github.com/vitejs/vite/commit/81327eb980c308474a586a9cb9c0c5fff10eba34">81327eb</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17812">#17812</a></li>
</ul>
<h2>5.4.0-beta.1 (2024-08-01)</h2>
<ul>
<li>fix: handle encoded base paths (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17577">#17577</a>)
(<a
href="https://github.com/vitejs/vite/commit/720447ee725046323387f661341d44e2ad390f41">720447e</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17577">#17577</a></li>
<li>fix: opt-in server.fs.cachedChecks (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17807">#17807</a>)
(<a
href="https://github.com/vitejs/vite/commit/4de659c351589b83a83a7a42f3da5b071a625662">4de659c</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17807">#17807</a></li>
<li>feat(css): support sass compiler api and sass-embedded package (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17754">#17754</a>)
(<a
href="https://github.com/vitejs/vite/commit/1025bb6d8f21c0cb9fe72405d42e0f91bb3f1d8e">1025bb6</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17754">#17754</a></li>
</ul>
<h2>5.4.0-beta.0 (2024-07-30)</h2>
<ul>
<li>fix: specify own Node version as target when bundling config files
(<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17307">#17307</a>)
(<a
href="https://github.com/vitejs/vite/commit/bbf001f0ecb4e9b826bbeb75b91d39f20aab3142">bbf001f</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17307">#17307</a></li>
<li>fix(build): handle invalid JSON in import.meta.env (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17648">#17648</a>)
(<a
href="https://github.com/vitejs/vite/commit/659b7206930d660779ad504beef89744fb97d339">659b720</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17648">#17648</a></li>
<li>fix(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17780">#17780</a>)
(<a
href="https://github.com/vitejs/vite/commit/e408542748edebd93dba07f21e3fd107725cadca">e408542</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17780">#17780</a></li>
<li>fix(mergeConfig): don't recreate server.hmr.server instance (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17763">#17763</a>)
(<a
href="https://github.com/vitejs/vite/commit/5c55b291cf1d41664b0e949acf41d70c956659da">5c55b29</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17763">#17763</a></li>
<li>feat(css): support sass modern api (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17728">#17728</a>)
(<a
href="https://github.com/vitejs/vite/commit/73a3de01d2baaeefeabfa46c28fb49550643b23a">73a3de0</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17728">#17728</a></li>
<li>feat(types): support custom VitePreloadErrorEvent (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17615">#17615</a>)
(<a
href="https://github.com/vitejs/vite/commit/116e37acf1a9ce808bc7a7f3a1439ab749c168e3">116e37a</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17615">#17615</a></li>
<li>perf: improve regex performance (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17789">#17789</a>)
(<a
href="https://github.com/vitejs/vite/commit/952bae3efcbd871fc3df5b1947060de7ebdafa36">952bae3</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17789">#17789</a></li>
<li>chore: minor config.logger refactor (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17770">#17770</a>)
(<a
href="https://github.com/vitejs/vite/commit/b947fdcc9d0db51ee6ac64d9712e8f04077280a7">b947fdc</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17770">#17770</a></li>
<li>chore: update eslint config (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17788">#17788</a>)
(<a
href="https://github.com/vitejs/vite/commit/796eef3af1291facc47b5273f83b0ef16d6d76b7">796eef3</a>),
closes <a
href="https://redirect.github.com/vitejs/vite/issues/17788">#17788</a></li>
</ul>
</blockquote>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/vitejs/vite/commit/7c06ef07f835308b1ff2de3df02d201a8dbfb3b6"><code>7c06ef0</code></a>
refactor(optimizer): use early continues (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17551">#17551</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/a8e2f6fafcf106ccc0d5a46972e66c2bf73155e3"><code>a8e2f6f</code></a>
fix(client): uniform variable <code>location</code> (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17528">#17528</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/6c106622812480d2bb134f8ed8efa84e2eb942c4"><code>6c10662</code></a>
chore(deps): update dependency eslint to v9 (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/16661">#16661</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/bf123f2c6242424a3648cf9234281fd9ff44e3d5"><code>bf123f2</code></a>
fix(deps): update all non-major dependencies (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17494">#17494</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/ec16a5efc04d8ab50301d184c20e7bd0c8d8f6a2"><code>ec16a5e</code></a>
chore: fix some comments (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17495">#17495</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/c608e6ac740509c2e68a6928d84676878a998dd0"><code>c608e6a</code></a>
release: v5.3.1</li>
<li><a
href="https://github.com/vitejs/vite/commit/6ced135c6fc9367f8d4f8207666e208f90547af5"><code>6ced135</code></a>
fix(build): preload treeshaking ignore equal (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17480">#17480</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/d355568e8d2dbc30b94b7d7680943f7db713ddc4"><code>d355568</code></a>
fix(build): handle preload treeshaking for braces (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17479">#17479</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/1f09344b57b253c0435290de1d6e147c8c9b50d5"><code>1f09344</code></a>
chore: consolidate changelog for 5.3 (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17476">#17476</a>)</li>
<li><a
href="https://github.com/vitejs/vite/commit/3e2707122033a5be074d88dbeb244526dee85bb9"><code>3e27071</code></a>
fix(build): handle preload treeshaking for commas (<a
href="https://github.com/vitejs/vite/tree/HEAD/packages/vite/issues/17472">#17472</a>)</li>
<li>Additional commits viewable in <a
href="https://github.com/vitejs/vite/commits/[email protected]/packages/vite">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 Aug 14, 2024
1 parent dadbd00 commit 577ec1a
Show file tree
Hide file tree
Showing 6 changed files with 179 additions and 174 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,11 @@
"@actions/github": "^6.0.0",
"@chronus/github": "workspace:*",
"@eslint/js": "^9.9.0",
"@types/node": "^22.1.0",
"@types/node": "^22.3.0",
"@typescript-eslint/parser": "^8.0.0",
"@typescript-eslint/utils": "^8.0.0",
"@vitest/ui": "^2.0.5",
"cspell": "^8.13.1",
"cspell": "^8.13.3",
"eslint": "^9.9.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-unicorn": "^55.0.0",
Expand Down
4 changes: 2 additions & 2 deletions packages/chronus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -57,14 +57,14 @@
"@chronus/registry-mock": "workspace:*",
"@types/cross-spawn": "^6.0.6",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.1.0",
"@types/node": "^22.3.0",
"@types/node-fetch": "^2.6.11",
"@types/pacote": "^11.1.8",
"@types/pluralize": "^0.0.33",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.5.8",
"@types/xml2js": "^0.4.14",
"@types/yargs": "^17.0.32",
"@types/yargs": "^17.0.33",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"typescript": "^5.5.4",
Expand Down
4 changes: 2 additions & 2 deletions packages/github-pr-commenter/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,11 @@
"@octokit/rest": "^21.0.1"
},
"devDependencies": {
"@types/node": "^22.1.0",
"@types/node": "^22.3.0",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"typescript": "^5.5.4",
"vite": "^5.3.5",
"vite": "^5.4.0",
"vite-bundle-visualizer": "^1.2.1"
},
"bugs": "https://github.com/timotheeguerin/chronus/issues"
Expand Down
4 changes: 2 additions & 2 deletions packages/github/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/node": "^22.1.0",
"@types/yargs": "^17.0.32",
"@types/node": "^22.3.0",
"@types/yargs": "^17.0.33",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"typescript": "^5.5.4"
Expand Down
2 changes: 1 addition & 1 deletion packages/registry-mock/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
},
"devDependencies": {
"@types/cross-spawn": "^6.0.6",
"@types/node": "^22.1.0",
"@types/node": "^22.3.0",
"rimraf": "^6.0.1",
"source-map-support": "^0.5.21",
"typescript": "^5.5.4"
Expand Down
Loading

0 comments on commit 577ec1a

Please sign in to comment.