Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 12, 2025

Bumps the dependencies group with 14 updates in the / directory:

Package From To
prettier 3.4.2 3.5.3
yaml 2.6.1 2.7.1
@primer/octicons-react 19.13.0 19.15.1
@tailwindcss/typography 0.5.15 0.5.16
autoprefixer 10.4.20 10.4.21
json-2-csv 5.5.7 5.5.9
next-themes 0.4.4 0.4.6
postcss 8.4.49 8.5.3
react-tiny-popover 8.1.4 8.1.6
typescript 5.7.2 5.8.3
usehooks-ts 3.1.0 3.1.1
eslint-plugin-react 7.37.2 7.37.5
dotenv 16.4.7 16.5.0
fs-extra 11.2.0 11.3.0

Updates prettier from 3.4.2 to 3.5.3

Release notes

Sourced from prettier's releases.

3.5.3

🔗 Changelog

3.5.2

🔗 Changelog

3.5.1

🔗 Changelog

3.5.0

diff

🔗 Release note

Changelog

Sourced from prettier's changelog.

3.5.3

diff

Flow: Fix missing parentheses in ConditionalTypeAnnotation (#17196 by @​fisker)

// Input
type T<U> = 'a' | ('b' extends U ? 'c' : empty);
type T<U> = 'a' & ('b' extends U ? 'c' : empty);
// Prettier 3.5.2
type T<U> = "a" | "b" extends U ? "c" : empty;
type T<U> = "a" & "b" extends U ? "c" : empty;
// Prettier 3.5.3
type T<U> = "a" | ("b" extends U ? "c" : empty);
type T<U> = "a" & ("b" extends U ? "c" : empty);

3.5.2

diff

Remove module-sync condition (#17156 by @​fisker)

In Prettier 3.5.0, we added module-sync condition to package.json, so that require("prettier") can use ESM version, but turns out it doesn't work if CommonJS and ESM plugins both imports builtin plugins. To solve this problem, we decide simply remove the module-sync condition, so require("prettier") will still use the CommonJS version, we'll revisit until require(ESM) feature is more stable.

3.5.1

diff

Fix CLI crash when cache for old version exists (#17100 by @​sosukesuzuki)

Prettier 3.5 uses a different cache format than previous versions, Prettier 3.5.0 crashes when reading existing cache file, Prettier 3.5.1 fixed the problem.

Support dockercompose and github-actions-workflow in VSCode (#17101 by @​remcohaszing)

Prettier now supports the dockercompose and github-actions-workflow languages in Visual Studio Code.

3.5.0

diff

🔗 Release Notes

Commits

Updates yaml from 2.6.1 to 2.7.1

Release notes

Sourced from yaml's releases.

v2.7.1

  • Do not allow seq with single-line collection value on same line with map key (#603)
  • Improve warning & avoid TypeError on bad YAML 1.1 nodes (#610)

v2.7.0

The library is now available on JSR as @​eemeli/yaml and on deno.land/x as yaml. In addition to Node.js and browsers, it should work in Deno, Bun, and Cloudflare Workers.

  • Use .ts extension in all relative imports (#591)
  • Ignore newline after block seq indicator as space before value (#590)
  • Require Node.js 14.18 or later (was 14.6) (#598)
Commits
  • a141bc0 2.7.1
  • a880b42 fix: Do not allow seq with single-line collection value on same line with map...
  • 923d67b test: Add test for tab after indent spaces for flow-in-block (#604)
  • 7cf843c test: Add descriptive names to tests with issue references
  • 9cf06d2 fix: Improve warning & avoid TypeError on bad YAML 1.1 nodes (fixes #610)
  • 50cf76b chore: Update docs-slate to skip its CI tests
  • 3b2362a docs: Add install option deno add jsr:@eemeli/yaml
  • 83cb780 chore: Update docs to use Slate 2.13.1
  • 9b02456 chore: Fix JSR version
  • 8f512b5 2.7.0
  • Additional commits viewable in compare view

Updates @primer/octicons-react from 19.13.0 to 19.15.1

Release notes

Sourced from @​primer/octicons-react's releases.

v19.15.1

Patch Changes

v19.15.0

Minor Changes

v19.14.0

Minor Changes

Changelog

Sourced from @​primer/octicons-react's changelog.

19.15.1

Patch Changes

19.15.0

Minor Changes

19.14.0

Minor Changes

  • #1037 7402e69c Thanks @​jonrohan! - Update octicons-react to use presentational attributes over inline styles for base styles
Commits

Updates @tailwindcss/typography from 0.5.15 to 0.5.16

Release notes

Sourced from @​tailwindcss/typography's releases.

v0.5.16

Fixed

  • Support installing with beta versions of Tailwind CSS v4 (#365)
Changelog

Sourced from @​tailwindcss/typography's changelog.

[0.5.16] - 2025-01-07

Fixed

  • Support installing with beta versions of Tailwind CSS v4 (#365)
Commits

Updates autoprefixer from 10.4.20 to 10.4.21

Release notes

Sourced from autoprefixer's releases.

10.4.21

Changelog

Sourced from autoprefixer's changelog.

10.4.21

Commits

Updates json-2-csv from 5.5.7 to 5.5.9

Release notes

Sourced from json-2-csv's releases.

NPM Release v5.5.9

NPM Release v5.5.8

  • Incorporates @​sevrai's fix from #271
  • Dev Dependency vulnerability patch
Commits
  • 6f43ada chore(rel): 5.5.9
  • 98af2bd Merge pull request #275 from jose-cabral/nested-arrays-273
  • 32ca8c4 fixes #273: nested arrays are not always unwound
  • 5869d1b Merge pull request #272 from mrodrig/release-5.5.8
  • 5fce66e chore(rel): 5.5.8
  • ac3d32d chore(deps): npm audit fix --force
  • 1b75a88 Merge pull request #271 from sevrai/fix/field-after-wrap
  • 3a8ce35 fix: comma starting a wrapped value broke the line
  • See full diff in compare view

Updates next-themes from 0.4.4 to 0.4.6

Release notes

Sourced from next-themes's releases.

v0.4.6

What's Changed

New Contributors

Full Changelog: pacocoursey/next-themes@v0.4.5...v0.4.6

v0.4.5

What's Changed

New Contributors

Full Changelog: pacocoursey/next-themes@v0.4.4...v0.4.5

Commits
  • 3a43743 v0.4.6
  • f5be1b2 fix: add null check for value in updateDOM function to prevent runtime errors...
  • c178917 v0.4.5
  • d12996b chore: Fix corepack errors in CI (#342)
  • b77db23 Bump the npm_and_yarn group across 1 directory with 7 updates (#341)
  • d3fa4ee Bump next from 14.2.10 to 14.2.15 in the npm_and_yarn group across 1 director...
  • ad83567 Reduce number of renders by pre-setting resolvedTheme (#338)
  • 1b51044 fix: map theme to class using ValueObject in injected script (#330)
  • See full diff in compare view

Updates postcss from 8.4.49 to 8.5.3

Release notes

Sourced from postcss's releases.

8.5.3

8.5.2

8.5.1

8.5 “Duke Alloces”

PostCSS 8.5 brought API to work better with non-CSS sources like HTML, Vue.js/Svelte sources or CSS-in-JS.

@​romainmenke during his work on Stylelint added Input#document in additional to Input#css.

root.source.input.document //=> "<p>Hello</p>
                           //    <style>
                           //    p {
                           //      color: green;
                           //    }
                           //    </style>"
root.source.input.css      //=> "p {
                           //      color: green;
                           //    }"

Thanks to Sponsors

This release was possible thanks to our community.

If your company wants to support the sustainability of front-end infrastructure or wants to give some love to PostCSS, you can join our supporters by:

Changelog

Sourced from postcss's changelog.

8.5.3

8.5.2

8.5.1

8.5 “Duke Alloces”

  • Added Input#document for sources like CSS-in-JS or HTML (by @​romainmenke).
Commits

Updates react-tiny-popover from 8.1.4 to 8.1.6

Changelog

Sourced from react-tiny-popover's changelog.

[8.1.6] - 2025-2-2

Fixed

  • Resolved newly introduced module declaration issue from previous release

[8.1.5] - 2025-2-2

Fixed

  • Resolved an issue where popover position sometimes did not occur on window resize
Commits

Updates typescript from 5.7.2 to 5.8.3

Release notes

Sourced from typescript's releases.

TypeScript 5.8.3

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 RC

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.8 Beta

For release notes, check out the release announcement.

Downloads are available on:

TypeScript 5.7.3

For release notes, check out the release announcement.

Downloads are available on npm

Commits
  • 83dc0bb Convert release publishing inputs into parameters (#61523)
  • ba663f6 Exclude completions of binding pattern variable initializers (#52723)
  • 7205eda Bump github/codeql-action from 3.28.12 to 3.28.13 in the github-actions group...
  • 89c572c Fixed a symbol display crash on expando members write locations (#55478)
  • 7b26d2e Fix incorrect name in new release pipeline (#61514)
  • c7a559e Add new release publisher yaml (#61491)
  • 29e6d66 Fix lib.includes('dom') check in containerSeemsToBeEmptyDomElement (#61481)
  • 19b7772 Bump the github-actions group with 4 updates (#61474)
  • 4dc677b Fix errors on type assertions in erasableSyntaxOnly (#61452)
  • ee3dd72 fix(60908): Unexpected "'Type' is declared but its value is never read." erro...
  • Additional commits viewable in compare view

Updates usehooks-ts from 3.1.0 to 3.1.1

Release notes

Sourced from usehooks-ts's releases.

[email protected]

Patch Changes

Commits

Updates eslint-plugin-react from 7.37.2 to 7.37.5

Release notes

Sourced from eslint-plugin-react's releases.

v7.37.5

Fixed

  • [no-unknown-property]: allow shadow root attrs on \<template> (#3912[] @​ljharb)
  • [prop-types]: support ComponentPropsWithRef from a namespace import (#3651[] @​corydeppen)
  • [jsx-no-constructed-context-values]: detect constructed context values in React 19 <Context> usage (#3910[] @​TildaDares)
  • [no-unknown-property]: allow transform-origin on rect (#3914[] @​ljharb)

Changed

#3651: jsx-eslint/eslint-plugin-react#3651 #3909: jsx-eslint/eslint-plugin-react#3909 #3910: jsx-eslint/eslint-plugin-react#3910 #3912: jsx-eslint/eslint-plugin-react#3912 #3914: jsx-eslint/eslint-plugin-react#3914 [button-has-type]: docs/rules/button-has-type.md [jsx-no-constructed-context-values]: docs/rules/jsx-no-constructed-context-values.md [no-unknown-property]: docs/rules/no-unknown-property.md [prop-types]: docs/rules/prop-types.md

v7.37.4

Fixed

  • [no-unknown-property]: support onBeforeToggle, popoverTarget, popoverTargetAction attributes (#3865[] @​acusti)
  • [types] fix types of flat configs (#3874[] @​ljharb)

#3865: jsx-eslint/eslint-plugin-react#3865 #3874: jsx-eslint/eslint-plugin-react#3874 [no-unknown-property]: docs/rules/no-unknown-property.md

v7.37.3

Fixed

  • [no-danger]: avoid a crash on a nested component name (#3833[] @​ljharb)
  • [Fix] types: correct generated type declaration (#3840[] @​ocavue)
  • [no-unknown-property]: support precedence prop in react 19 (#3829[] @​acusti)
  • [prop-types]: props missing in validation when using generic types from a namespace import (#3859[] @​rbondoc96)

Changed

  • [Tests] [jsx-no-script-url]: Improve tests (#3849[] @​radu2147)
  • [Docs] fix broken links: [default-props-match-prop-types], [jsx-boolean-value], [jsx-curly-brace-presence], [jsx-no-bind], [no-array-index-key], [no-is-mounted], [no-render-return-value], [require-default-props] (#3841[] @​bastiendmt)

#3829: jsx-eslint/eslint-plugin-react#3829 #3833: jsx-eslint/eslint-plugin-react#3833 #3840: jsx-eslint/eslint-plugin-react#3840 #3841: jsx-eslint/eslint-plugin-react#3841 #3849: jsx-eslint/eslint-plugin-react#3849 #3859: jsx-eslint/eslint-plugin-react#3859 [default-props-match-prop-types]: docs/rules/default-props-match-prop-types.md [jsx-boolean-value]: docs/rules/jsx-boolean-value.md [jsx-curly-brace-presence]: docs/rules/jsx-curly-brace-presence.md [jsx-no-bind]: docs/rules/jsx-no-bind.md

... (truncated)

Changelog

Sourced from eslint-plugin-react's changelog.

7.37.5 - 2025.04.03

Fixed

  • [no-unknown-property]: allow shadow root attrs on \<template> (#3912[] @​ljharb)
  • [prop-types]: support ComponentPropsWithRef from a namespace import (#3651[] @​corydeppen)
  • [jsx-no-constructed-context-values]: detect constructed context values in React 19 <Context> usage (#3910[] @​TildaDares)
  • [no-unknown-property]: allow transform-origin on rect (#3914[] @​ljharb)

Changed

#3914: jsx-eslint/eslint-plugin-react#3914 #3912: jsx-eslint/eslint-plugin-react#3912 #3910: jsx-eslint/eslint-plugin-react#3910 #3909: jsx-eslint/eslint-plugin-react#3909 #3651: jsx-eslint/eslint-plugin-react#3651

7.37.4 - 2025.01.12

Fixed

  • [no-unknown-property]: support onBeforeToggle, popoverTarget, popoverTargetAction attributes (#3865[] @​acusti)
  • [types] fix types of flat configs (#3874[] @​ljharb)

#3874: jsx-eslint/eslint-plugin-react#3874 #3865: jsx-eslint/eslint-plugin-react#3865

7.37.3 - 2024.12.23

Fixed

  • [no-danger]: avoid a crash on a nested component name (#3833[] @​ljharb)
  • [Fix] types: correct generated type declaration (#3840[] @​ocavue)
  • [no-unknown-property]: support precedence prop in react 19 (#3829[] @​acusti)
  • [prop-types]: props missing in validation when using generic types from a namespace import (#3859[] @​rbondoc96)

Changed

  • [Tests] [jsx-no-script-url]: Improve tests (#3849[] @​radu2147)
  • [Docs] fix broken links: [default-props-match-prop-types], [jsx-boolean-value], [jsx-curly-brace-presence], [jsx-no-bind], [no-array-index-key], [no-is-mounted], [no-render-return-value], [require-default-props] (#3841[] @​bastiendmt)

#3859: jsx-eslint/eslint-plugin-react#3859 #3849: jsx-eslint/eslint-plugin-react#3849 #3841: jsx-eslint/eslint-plugin-react#3841 #3840: jsx-eslint/eslint-plugin-react#3840 #3833: jsx-eslint/eslint-plugin-react#3833 #3829: jsx-eslint/eslint-plugin-react#3829

Commits
  • 2c98b83 Update CHANGELOG and bump version
  • 2f64dea [Fix] no-unknown-property: allow transform-origin on rect
  • 2428618 [Fix] jsx-no-constructed-context-values: detect constructed context values ...
  • 60b7316 [Tests] prop-types: use proper spacing/semis, button type
  • 90a00b9 [Fix] prop-types: support ComponentPropsWithRef from a namespace import
  • 3fd9b92 [Fix] no-unknown-property: allow shadow root attrs on \<template>
  • addad46 [Deps] update object.entries
  • 98a31f8 [Dev Deps] update @babel/core, @babel/eslint-parser
  • 7eb6ca9 [Docs] button-has-type: clean up phrasing
  • e6b5b41 Update CHANGELOG and bump version
  • Additional commits viewable in compare view

Updates dotenv from 16.4.7 to 16.5.0

Changelog

Sourced from dotenv's changelog.

16.5.0 (2025-04-07)

Added

  • 🎉 Added new sponsor Graphite - the AI developer productivity platform helping teams on GitHub ship higher quality software, faster.

[!TIP] Become a sponsor

The dotenvx README is viewed thousands of times DAILY on GitHub and NPM. Sponsoring dotenv is a great way to get in front of developers and give back to the developer community at the same time.

Changed

  • Remove _log method. Use _debug #862
Commits

Updates fs-extra from 11.2.0 to 11.3.0

Changelog

Sourced from fs-extra's changelog.

11.3.0 / 2025-01-15

  • Add promise support for newer fs methods (#1044, #1045)
  • Use fs.opendir in copy()/copySync() for better perf/scalability (#972, #1028)
Commits

Updates vite from 5.2.2 to 5.4.19

Release notes

Sourced from vite's releases.

v5.4.19

Please refer to CHANGELOG.md for details.

v5.4.18

Please refer to CHANGELOG.md for details.

v5.4.17

Please refer to CHANGELOG.md for details.

v5.4.16

Please refer to CHANGELOG.md for details.Description has been truncated

…pdates

Bumps the dependencies group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [prettier](https://github.com/prettier/prettier) | `3.4.2` | `3.5.3` |
| [yaml](https://github.com/eemeli/yaml) | `2.6.1` | `2.7.1` |
| [@primer/octicons-react](https://github.com/primer/octicons) | `19.13.0` | `19.15.1` |
| [@tailwindcss/typography](https://github.com/tailwindlabs/tailwindcss-typography) | `0.5.15` | `0.5.16` |
| [autoprefixer](https://github.com/postcss/autoprefixer) | `10.4.20` | `10.4.21` |
| [json-2-csv](https://github.com/mrodrig/json-2-csv) | `5.5.7` | `5.5.9` |
| [next-themes](https://github.com/pacocoursey/next-themes) | `0.4.4` | `0.4.6` |
| [postcss](https://github.com/postcss/postcss) | `8.4.49` | `8.5.3` |
| [react-tiny-popover](https://github.com/alexkatz/react-tiny-popover) | `8.1.4` | `8.1.6` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.7.2` | `5.8.3` |
| [usehooks-ts](https://github.com/juliencrn/usehooks-ts) | `3.1.0` | `3.1.1` |
| [eslint-plugin-react](https://github.com/jsx-eslint/eslint-plugin-react) | `7.37.2` | `7.37.5` |
| [dotenv](https://github.com/motdotla/dotenv) | `16.4.7` | `16.5.0` |
| [fs-extra](https://github.com/jprichardson/node-fs-extra) | `11.2.0` | `11.3.0` |



Updates `prettier` from 3.4.2 to 3.5.3
- [Release notes](https://github.com/prettier/prettier/releases)
- [Changelog](https://github.com/prettier/prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/prettier@3.4.2...3.5.3)

Updates `yaml` from 2.6.1 to 2.7.1
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v2.6.1...v2.7.1)

Updates `@primer/octicons-react` from 19.13.0 to 19.15.1
- [Release notes](https://github.com/primer/octicons/releases)
- [Changelog](https://github.com/primer/octicons/blob/main/CHANGELOG.md)
- [Commits](primer/octicons@v19.13.0...v19.15.1)

Updates `@tailwindcss/typography` from 0.5.15 to 0.5.16
- [Release notes](https://github.com/tailwindlabs/tailwindcss-typography/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss-typography/blob/main/CHANGELOG.md)
- [Commits](tailwindlabs/tailwindcss-typography@v0.5.15...v0.5.16)

Updates `autoprefixer` from 10.4.20 to 10.4.21
- [Release notes](https://github.com/postcss/autoprefixer/releases)
- [Changelog](https://github.com/postcss/autoprefixer/blob/main/CHANGELOG.md)
- [Commits](postcss/autoprefixer@10.4.20...10.4.21)

Updates `json-2-csv` from 5.5.7 to 5.5.9
- [Release notes](https://github.com/mrodrig/json-2-csv/releases)
- [Commits](mrodrig/json-2-csv@5.5.7...5.5.9)

Updates `next-themes` from 0.4.4 to 0.4.6
- [Release notes](https://github.com/pacocoursey/next-themes/releases)
- [Commits](pacocoursey/next-themes@v0.4.4...v0.4.6)

Updates `postcss` from 8.4.49 to 8.5.3
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.4.49...8.5.3)

Updates `react-tiny-popover` from 8.1.4 to 8.1.6
- [Changelog](https://github.com/alexkatz/react-tiny-popover/blob/main/CHANGELOG.md)
- [Commits](https://github.com/alexkatz/react-tiny-popover/commits)

Updates `typescript` from 5.7.2 to 5.8.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release-publish.yml)
- [Commits](microsoft/TypeScript@v5.7.2...v5.8.3)

Updates `usehooks-ts` from 3.1.0 to 3.1.1
- [Release notes](https://github.com/juliencrn/usehooks-ts/releases)
- [Commits](https://github.com/juliencrn/usehooks-ts/compare/[email protected]@3.1.1)

Updates `eslint-plugin-react` from 7.37.2 to 7.37.5
- [Release notes](https://github.com/jsx-eslint/eslint-plugin-react/releases)
- [Changelog](https://github.com/jsx-eslint/eslint-plugin-react/blob/master/CHANGELOG.md)
- [Commits](jsx-eslint/eslint-plugin-react@v7.37.2...v7.37.5)

Updates `dotenv` from 16.4.7 to 16.5.0
- [Changelog](https://github.com/motdotla/dotenv/blob/master/CHANGELOG.md)
- [Commits](motdotla/dotenv@v16.4.7...v16.5.0)

Updates `fs-extra` from 11.2.0 to 11.3.0
- [Changelog](https://github.com/jprichardson/node-fs-extra/blob/master/CHANGELOG.md)
- [Commits](jprichardson/node-fs-extra@11.2.0...11.3.0)

Updates `vite` from 5.2.2 to 5.4.19
- [Release notes](https://github.com/vitejs/vite/releases)
- [Changelog](https://github.com/vitejs/vite/blob/v5.4.19/packages/vite/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite/commits/v5.4.19/packages/vite)

---
updated-dependencies:
- dependency-name: prettier
  dependency-version: 3.5.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: yaml
  dependency-version: 2.7.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@primer/octicons-react"
  dependency-version: 19.15.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@tailwindcss/typography"
  dependency-version: 0.5.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: autoprefixer
  dependency-version: 10.4.21
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: json-2-csv
  dependency-version: 5.5.9
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: next-themes
  dependency-version: 0.4.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: postcss
  dependency-version: 8.5.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: react-tiny-popover
  dependency-version: 8.1.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: typescript
  dependency-version: 5.8.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: usehooks-ts
  dependency-version: 3.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: eslint-plugin-react
  dependency-version: 7.37.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: dotenv
  dependency-version: 16.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: fs-extra
  dependency-version: 11.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: vite
  dependency-version: 5.4.19
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 12, 2025
@dependabot dependabot bot requested a review from a team as a code owner May 12, 2025 22:38
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels May 12, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants