Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump the all group with 16 updates #33

Merged
merged 2 commits into from
Sep 5, 2024

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 2, 2024

Bumps the all group with 16 updates:

Package From To
@jitl/quickjs-ng-wasmfile-release-sync 0.29.2 0.30.0
quickjs-emscripten-core 0.29.2 0.30.0
react-hotkeys-hook 4.5.0 4.5.1
react-resizable-panels 2.1.1 2.1.2
react-virtuoso 4.10.1 4.10.2
wouter 3.3.4 3.3.5
@commitlint/cli 19.4.0 19.4.1
@commitlint/config-conventional 19.2.2 19.4.1
@testing-library/react 16.0.0 16.0.1
@types/react 18.3.4 18.3.5
happy-dom 15.0.0 15.7.3
knip 5.27.4 5.29.1
lint-staged 15.2.9 15.2.10
postcss 8.4.41 8.4.44
typescript-eslint 8.3.0 8.4.0
vite-plugin-pwa 0.20.1 0.20.2

Updates @jitl/quickjs-ng-wasmfile-release-sync from 0.29.2 to 0.30.0

Changelog

Sourced from @​jitl/quickjs-ng-wasmfile-release-sync's changelog.

v0.30.0

  • #200 Inspect and iterate handles, equality, changes to result types, changes to debug logging.
  • #195 Export setDebugMode

Collection & Iteration

  • For objects and arrays: add context.getOwnPropertyNames(handle, options) to iterate the key or array index handles.
  • For arrays: add context.getLength(handle) which reads handle.length and returns it as a number or undefined to make writing for (i=0;i<length;i++) loops easier.
  • For iterable collections like Map, Set, Array: add context.getIterator(handle) calls handle[Symbol.iterator]() and then exposes the result as an IterableIterator to host javascript.

Usability improvements

  • The SuccessOrFail<T, QuickJSHandle> return type is largely replaced with a new return type DisposableSuccess<T> | DisposableFail<QuickJSHandle>. The new type implements result.unwrap() as a replacement for context.unwrapResult(result). It also implements dispose() directly, so you no longer need to distinguish between success and failure to clean up.
  • add context.callMethod(handle, 'methodName'), this makes it easier to call methods like context.callMethod(handle, 'keys') or context.callMethod('values') which can be used with the new iterator.

Equality

  • Added context.eq(a, b), context.sameValue(a, b), context.sameValueZero(a, b)

Debug logging changes

Debug logging is now disabled by default, even when using a DEBUG variant. It can be enabled on a runtime-by-runtime basis with runtime.setDebugMode(boolean) or context.runtime.setDebugMode(boolean), or globally using setDebugMode(boolean). As with before, you should use a DEBUG variant to see logs from the WebAssembly C code.

Commits

Updates quickjs-emscripten-core from 0.29.2 to 0.30.0

Changelog

Sourced from quickjs-emscripten-core's changelog.

v0.30.0

  • #200 Inspect and iterate handles, equality, changes to result types, changes to debug logging.
  • #195 Export setDebugMode

Collection & Iteration

  • For objects and arrays: add context.getOwnPropertyNames(handle, options) to iterate the key or array index handles.
  • For arrays: add context.getLength(handle) which reads handle.length and returns it as a number or undefined to make writing for (i=0;i<length;i++) loops easier.
  • For iterable collections like Map, Set, Array: add context.getIterator(handle) calls handle[Symbol.iterator]() and then exposes the result as an IterableIterator to host javascript.

Usability improvements

  • The SuccessOrFail<T, QuickJSHandle> return type is largely replaced with a new return type DisposableSuccess<T> | DisposableFail<QuickJSHandle>. The new type implements result.unwrap() as a replacement for context.unwrapResult(result). It also implements dispose() directly, so you no longer need to distinguish between success and failure to clean up.
  • add context.callMethod(handle, 'methodName'), this makes it easier to call methods like context.callMethod(handle, 'keys') or context.callMethod('values') which can be used with the new iterator.

Equality

  • Added context.eq(a, b), context.sameValue(a, b), context.sameValueZero(a, b)

Debug logging changes

Debug logging is now disabled by default, even when using a DEBUG variant. It can be enabled on a runtime-by-runtime basis with runtime.setDebugMode(boolean) or context.runtime.setDebugMode(boolean), or globally using setDebugMode(boolean). As with before, you should use a DEBUG variant to see logs from the WebAssembly C code.

Commits

Updates react-hotkeys-hook from 4.5.0 to 4.5.1

Release notes

Sourced from react-hotkeys-hook's releases.

v4.5.1

What's Changed

New Contributors

Full Changelog: JohannesKlauss/react-hotkeys-hook@v4.5.0...v4.5.1

Commits
  • 44a79ce 4.5.1
  • 4c506d3 fix build error
  • 88264ea Merge pull request #1132 from zeorin/fix/callback-ref
  • e921499 Merge pull request #1124 from nperez0111/main
  • 3ea2cba chore(deps): update all non-major dependencies to v8.0.1
  • 704a50b Merge pull request #1200 from JohannesKlauss/renovate/major-typescript-eslint...
  • e95d276 Merge pull request #1201 from JohannesKlauss/dependabot/npm_and_yarn/multi-e3...
  • d9f8be0 Bump ws
  • 0c996b7 chore(deps): update typescript-eslint monorepo to v8
  • 10ae12b chore(deps): update all non-major dependencies
  • Additional commits viewable in compare view

Updates react-resizable-panels from 2.1.1 to 2.1.2

Commits

Updates react-virtuoso from 4.10.1 to 4.10.2

Release notes

Sourced from react-virtuoso's releases.

v4.10.2

4.10.2 (2024-08-31)

Bug Fixes

  • drop explicit createElement (24d045b)
Commits

Updates wouter from 3.3.4 to 3.3.5

Release notes

Sourced from wouter's releases.

v3.0.1 Missing docs on npmjs.org

  • README.md file was not part of wouter/wouter-preact packages, because of the migration to monorepo in v3. This resulted in missing documentation on npmjs.org. This release fixes that.
Commits

Updates @commitlint/cli from 19.4.0 to 19.4.1

Release notes

Sourced from @​commitlint/cli's releases.

v19.4.1

19.4.1 (2024-08-28)

Bug Fixes

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.4.0...v19.4.1

Changelog

Sourced from @​commitlint/cli's changelog.

19.4.1 (2024-08-28)

Note: Version bump only for package @​commitlint/cli

Commits

Updates @commitlint/config-conventional from 19.2.2 to 19.4.1

Release notes

Sourced from @​commitlint/config-conventional's releases.

v19.4.1

19.4.1 (2024-08-28)

Bug Fixes

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.4.0...v19.4.1

v19.4.0

Features

Chore & Docs

New Contributors

Full Changelog: conventional-changelog/commitlint@v19.3.1...v19.4.0

v19.3.1

19.3.1 (2024-05-13)

Bug Fixes

Chore

... (truncated)

Changelog

Sourced from @​commitlint/config-conventional's changelog.

19.4.1 (2024-08-28)

Note: Version bump only for package @​commitlint/config-conventional

Commits

Updates @testing-library/react from 16.0.0 to 16.0.1

Release notes

Sourced from @​testing-library/react's releases.

v16.0.1

16.0.1 (2024-08-29)

Bug Fixes

  • Add support for exactOptionalPropertyTypes in TypeScript (#1351) (3dcd8a9)
Commits

Updates @types/react from 18.3.4 to 18.3.5

Commits

Updates happy-dom from 15.0.0 to 15.7.3

Release notes

Sourced from happy-dom's releases.

v15.7.3

👷‍♂️ Patch fixes

  • Fixes bug that occurs when checking if a symbol property exists on HTMLSelectElement - By @​Cherry in task #1526

v15.7.2

👷‍♂️ Patch fixes

  • Fixes problem where it is not possible to observe again after disconnecting in MutationObserver - By @​capricorn86 in task #1524

v15.7.1

👷‍♂️ Patch fixes

  • Fixes selector validation and converts selectors to string (e.g. querySelector(['.class'])) - By @​capricorn86 in task #1507

v15.7.0

🎨 Features

v15.6.1

👷‍♂️ Patch fixes

  • Include Access-Control-*, Origin headers for cross-origin preflight requests - By @​rexxars in task #1489

v15.6.0

🎨 Features

👷‍♂️ Patch fixes

  • Changes wrong property name "inputmode" to "inputMode" in HTMLInputElement and HTMLTextAreaElement - By @​capricorn86 in task #1487

v15.5.0

🎨 Features

v15.4.3

👷‍♂️ Patch fixes

  • Adds support for supporting new lines and tabs as white-space character in CSS selectors - By @​syi0808 in task #1414

v15.4.2

👷‍♂️ Patch fixes

v15.4.1

👷‍♂️ Patch fixes

  • Throw error in FormData.append() when value parameter type is incorrect - By @​btea in task #1484

v15.4.0

🎨 Features

v15.3.2

👷‍♂️ Patch fixes

  • Fixes the HTMLInputElement.indeterminate, so that it behaves correctly - By @​malko in task #1439

... (truncated)

Commits
  • afc3692 fix: #1526 Handles scenario where a symbol property doesn't exist on HTMLSe...
  • 20b520a fix: #1527 Fixes problem where it is not possible to observe again after di...
  • 07a424a chore: [1] Add vitest extensions (#1523)
  • d0c8ab5 fix: #1507 Fixes selector validation, so that it converts values to string ...
  • 9bde659 feat: #1373 Adds support for the :has pseudo selector (#1521)
  • 2c52052 chore: #1213 Replaces rm rf with a windows compatible script when building ...
  • 86748db fix: #1489 Include Access-Control, Origin headers for cross-origin requests...
  • 71d243a feat: #1515 Adds support for the selectors :focus and :focus-visible (#1520)
  • 2b20cc3 fix: #1487 Changes wrong property name inputmode to inputMode in HTMLInputE...
  • 48dc929 chore: #1504 Upgrades Vitest (#1504)
  • Additional commits viewable in compare view

Updates knip from 5.27.4 to 5.29.1

Release notes

Sourced from knip's releases.

Release 5.29.1

  • Disable e1061c55 as it might be unexpected/breaking with eslint v8 (9e676226)

Release 5.29.0

  • Extract packages from rules in eslint plugin (e1061c55)
  • Normalize generator package names in nx plugin (bb86a059)
  • feat: coreutils to IGNORED_GLOBAL_BINARIES (#771) (97e171d9)
  • Edit docs + add note to nuxt plugin (3e0c4646)
  • Add optional note feature to plugin docs generator (9a11e1cc)
  • Update docs (70bf7056)

Release 5.28.0

  • Fix helper name (e5c20dde)
  • Add preconstruct plugin (af61c962)
  • Add nest plugin (4ea83f20)
  • Add nuxt plugin (bc548c59)
  • Add vike plugin (72b797a8)

Release 5.27.5

  • Add nuxt to Vue compiler condition (closes #770) (24fb3ea4)
  • Improve import matcher in "compilers" (4d2487f2)
  • Improve regex in "compilers" a bit (resolves #769) (382dd06c)
  • Fix blockquote style (aa137237)
  • Format/edit docs (6bd1617e)
  • Edit preprocessor section (2e072c59)
Commits
  • 83e6e36 Release 5.29.1
  • 9e67622 Disable e1061c55 as it might be unexpected/breaking with eslint v8
  • 0021ff0 Release 5.29.0
  • e1061c5 Extract packages from rules in eslint plugin
  • bb86a05 Normalize generator package names in nx plugin
  • 97e171d feat: coreutils to IGNORED_GLOBAL_BINARIES (#771)
  • 3e0c464 Edit docs + add note to nuxt plugin
  • 9a11e1c Add optional note feature to plugin docs generator
  • f730637 Release 5.28.0
  • e5c20dd Fix helper name
  • Additional commits viewable in compare view

Updates lint-staged from 15.2.9 to 15.2.10

Release notes

Sourced from lint-staged's releases.

v15.2.10

Patch Changes

Changelog

Sourced from lint-staged's changelog.

15.2.10

Patch Changes

Commits
  • 163112f chore(changeset): release
  • 829575c Merge pull request #1471 from lint-staged/updates
  • 893ca84 refactor: remove unused parameter default
  • a661f46 build(deps): migrate to ESLint 9
  • e3f283b build(deps): update minor dependencies
  • 35483b9 docs: add some more concrete command examples to the README
  • See full diff in compare view

Updates postcss from 8.4.41 to 8.4.44

Release notes

Sourced from postcss's releases.

8.4.44

  • Another way to fix markClean is not a function error.

8.4.43

  • Fixed markClean is not a function error.

8.4.42

  • Fixed CSS syntax error on long minified files (by @​varpstar).
Changelog

Sourced from postcss's changelog.

8.4.44

  • Another way to fix markClean is not a function error.

8.4.43

  • Fixed markClean is not a function error.

8.4.42

  • Fixed CSS syntax error on long minified files (by @​varpstar).
Commits
  • d442dc7 Release 8.4.44 version
  • 3c7cda0 Another way to fix markClean() is undefined issue
  • b985ed1 Release 8.4.43 version
  • 3025b74 Update dependencies
  • 79ff980 Update AST if it is not made by PostCSS >= 8.4.41
  • 0fda48a Release 8.4.42 version
  • cd5b08c Add ESLint to CI
  • 0975cc2 Sort source code and fix ESLint
  • 36950b4 Try to fix old Node.js tests
  • fbb6d60 Update dependencies
  • Additional commits viewable in compare view

Updates typescript-eslint from 8.3.0 to 8.4.0

Release notes

Sourced from typescript-eslint's releases.

v8.4.0

8.4.0 (2024-09-02)

🚀 Features

  • typescript-estree: make withoutProjectParserOptions generic (#9877)

❤️ Thank You

  • Josh Goldberg ✨

You can read about our versioning strategy and releases on our website.

Changelog

Sourced from typescript-eslint's changelog.

8.4.0 (2024-09-02)

This was a version bump only for typescript-eslint to align it with other projects, there were no code changes.

You can read about our versioning strategy and releases on our website.

Commits
  • 3920c93 chore(release): publish 8.4.0
  • 2ad3404 chore: enable unicorn/prefer-export-from and `@typescript-eslint/consistent...
  • See full diff in compare view

Updates vite-plugin-pwa from 0.20.1 to 0.20.2

Release notes

Sourced from vite-plugin-pwa's releases.

v0.20.2

   🚀 Features

    View changes on GitHub
Commits
  • 733555a chore: release v0.20.2
  • 687a634 feat: throw error when maximumFileSizeToCacheInBytes found in sw build warn...
  • d27e46d chore: bump pnpm to v9.9.0
  • 7ed84bd chore: add pkg.pr.new (#741)
  • See full diff in compare view

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 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 <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

Bumps the all group with 16 updates:

| Package | From | To |
| --- | --- | --- |
| [@jitl/quickjs-ng-wasmfile-release-sync](https://github.com/justjake/quickjs-emscripten) | `0.29.2` | `0.30.0` |
| [quickjs-emscripten-core](https://github.com/justjake/quickjs-emscripten) | `0.29.2` | `0.30.0` |
| [react-hotkeys-hook](https://github.com/JohannesKlauss/react-keymap-hook) | `4.5.0` | `4.5.1` |
| [react-resizable-panels](https://github.com/bvaughn/react-resizable-panels) | `2.1.1` | `2.1.2` |
| [react-virtuoso](https://github.com/petyosi/react-virtuoso) | `4.10.1` | `4.10.2` |
| [wouter](https://github.com/molefrog/wouter) | `3.3.4` | `3.3.5` |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `19.4.0` | `19.4.1` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `19.2.2` | `19.4.1` |
| [@testing-library/react](https://github.com/testing-library/react-testing-library) | `16.0.0` | `16.0.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.4` | `18.3.5` |
| [happy-dom](https://github.com/capricorn86/happy-dom) | `15.0.0` | `15.7.3` |
| [knip](https://github.com/webpro-nl/knip/tree/HEAD/packages/knip) | `5.27.4` | `5.29.1` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `15.2.9` | `15.2.10` |
| [postcss](https://github.com/postcss/postcss) | `8.4.41` | `8.4.44` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.3.0` | `8.4.0` |
| [vite-plugin-pwa](https://github.com/vite-pwa/vite-plugin-pwa) | `0.20.1` | `0.20.2` |


Updates `@jitl/quickjs-ng-wasmfile-release-sync` from 0.29.2 to 0.30.0
- [Changelog](https://github.com/justjake/quickjs-emscripten/blob/main/CHANGELOG.md)
- [Commits](justjake/quickjs-emscripten@v0.29.2...v0.30.0)

Updates `quickjs-emscripten-core` from 0.29.2 to 0.30.0
- [Changelog](https://github.com/justjake/quickjs-emscripten/blob/main/CHANGELOG.md)
- [Commits](justjake/quickjs-emscripten@v0.29.2...v0.30.0)

Updates `react-hotkeys-hook` from 4.5.0 to 4.5.1
- [Release notes](https://github.com/JohannesKlauss/react-keymap-hook/releases)
- [Changelog](https://github.com/JohannesKlauss/react-hotkeys-hook/blob/main/CHANGELOG.md)
- [Commits](JohannesKlauss/react-hotkeys-hook@v4.5.0...v4.5.1)

Updates `react-resizable-panels` from 2.1.1 to 2.1.2
- [Release notes](https://github.com/bvaughn/react-resizable-panels/releases)
- [Commits](bvaughn/react-resizable-panels@2.1.1...2.1.2)

Updates `react-virtuoso` from 4.10.1 to 4.10.2
- [Release notes](https://github.com/petyosi/react-virtuoso/releases)
- [Commits](petyosi/react-virtuoso@v4.10.1...v4.10.2)

Updates `wouter` from 3.3.4 to 3.3.5
- [Release notes](https://github.com/molefrog/wouter/releases)
- [Commits](molefrog/wouter@v3.3.4...v3.3.5)

Updates `@commitlint/cli` from 19.4.0 to 19.4.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/cli/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.4.1/@commitlint/cli)

Updates `@commitlint/config-conventional` from 19.2.2 to 19.4.1
- [Release notes](https://github.com/conventional-changelog/commitlint/releases)
- [Changelog](https://github.com/conventional-changelog/commitlint/blob/master/@commitlint/config-conventional/CHANGELOG.md)
- [Commits](https://github.com/conventional-changelog/commitlint/commits/v19.4.1/@commitlint/config-conventional)

Updates `@testing-library/react` from 16.0.0 to 16.0.1
- [Release notes](https://github.com/testing-library/react-testing-library/releases)
- [Changelog](https://github.com/testing-library/react-testing-library/blob/main/CHANGELOG.md)
- [Commits](testing-library/react-testing-library@v16.0.0...v16.0.1)

Updates `@types/react` from 18.3.4 to 18.3.5
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/react)

Updates `happy-dom` from 15.0.0 to 15.7.3
- [Release notes](https://github.com/capricorn86/happy-dom/releases)
- [Commits](capricorn86/happy-dom@v15.0.0...v15.7.3)

Updates `knip` from 5.27.4 to 5.29.1
- [Release notes](https://github.com/webpro-nl/knip/releases)
- [Changelog](https://github.com/webpro-nl/knip/blob/main/packages/knip/.release-it.json)
- [Commits](https://github.com/webpro-nl/knip/commits/5.29.1/packages/knip)

Updates `lint-staged` from 15.2.9 to 15.2.10
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v15.2.9...v15.2.10)

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

Updates `typescript-eslint` from 8.3.0 to 8.4.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/typescript-eslint/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.4.0/packages/typescript-eslint)

Updates `vite-plugin-pwa` from 0.20.1 to 0.20.2
- [Release notes](https://github.com/vite-pwa/vite-plugin-pwa/releases)
- [Commits](vite-pwa/vite-plugin-pwa@v0.20.1...v0.20.2)

---
updated-dependencies:
- dependency-name: "@jitl/quickjs-ng-wasmfile-release-sync"
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: quickjs-emscripten-core
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: react-hotkeys-hook
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: react-resizable-panels
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: react-virtuoso
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: wouter
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@commitlint/cli"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@commitlint/config-conventional"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: "@testing-library/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: happy-dom
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: knip
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: postcss
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: typescript-eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: vite-plugin-pwa
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Sep 2, 2024
@Pkcarreno Pkcarreno merged commit 0eddfdc into main Sep 5, 2024
3 checks passed
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/all-777bae5a1a branch September 5, 2024 19:37
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant