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

Bump the dev group across 4 directories with 12 updates #292

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 28, 2024

Bumps the dev group with 12 updates in the / directory:

Package From To
@types/node 22.5.5 22.8.1
@types/react 18.3.6 18.3.12
@types/react-dom 18.3.0 18.3.1
@vitejs/plugin-react 4.3.1 4.3.3
globals 15.9.0 15.11.0
typescript 5.6.2 5.6.3
typescript-eslint 8.5.0 8.11.0
vite 5.4.5 5.4.10
@rollup/plugin-replace 5.0.7 6.0.1
@rollup/plugin-typescript 11.1.6 12.1.1
rollup 4.21.3 4.24.2
tslib 2.7.0 2.8.0

Bumps the dev group with 2 updates in the /tooling/apis directory: @rollup/plugin-replace and @rollup/plugin-typescript.
Bumps the dev group with 1 update in the /tooling/react directory: @rollup/plugin-typescript.
Bumps the dev group with 1 update in the /tooling/ui directory: @rollup/plugin-typescript.

Updates @types/node from 22.5.5 to 22.8.1

Commits

Updates @types/react from 18.3.6 to 18.3.12

Commits

Updates @types/react-dom from 18.3.0 to 18.3.1

Commits

Updates @vitejs/plugin-react from 4.3.1 to 4.3.3

Release notes

Sourced from @​vitejs/plugin-react's releases.

v4.3.3

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}])
  }
return {
plugins: [react({ babel: { plugins: babelPlugins } })],
}
})

v4.3.2

Ignore directive sourcemap error #369

Changelog

Sourced from @​vitejs/plugin-react's changelog.

4.3.3 (2024-10-19)

React Compiler runtimeModule option removed

React Compiler was updated to accept a target option and runtimeModule was removed. vite-plugin-react will still detect runtimeModule for backwards compatibility.

When using a custom runtimeModule or target !== '19', the plugin will not try to pre-optimize react/compiler-runtime dependency.

The react-compiler-runtime is now available on npm can be used instead of the local shim for people using the compiler with React < 19.

Here is the configuration to use the compiler with React 18 and correct source maps in development:

npm install babel-plugin-react-compiler react-compiler-runtime @babel/plugin-transform-react-jsx-development
export default defineConfig(({ command }) => {
  const babelPlugins = [['babel-plugin-react-compiler', { target: '18' }]]
  if (command === 'serve') {
    babelPlugins.push(['@babel/plugin-transform-react-jsx-development', {}])
  }
return {
plugins: [react({ babel: { plugins: babelPlugins } })],
}
})

4.3.2 (2024-09-29)

Ignore directive sourcemap error #369

Commits

Updates globals from 15.9.0 to 15.11.0

Release notes

Sourced from globals's releases.

v15.11.0

  • Add es3 globals (#267) 6784dc1

sindresorhus/globals@v15.10.0...v15.11.0

v15.10.0

  • Update globals (#264) 3cbce2d

sindresorhus/globals@v15.9.0...v15.10.0

Commits

Updates typescript from 5.6.2 to 5.6.3

Release notes

Sourced from typescript's releases.

TypeScript 5.6.3

For release notes, check out the release announcement.

For the complete list of fixed issues, check out the

Downloads are available on:

Commits
  • d48a5cf Bump version to 5.6.3 and LKG
  • fefa70a 🤖 Pick PR #60083 (Don't issue implicit any when obtai...) into release-5.6 (#...
  • ff71692 [release-5.6] Remove tsbuildInfo specification error now that we need it for ...
  • 1f44dcf 🤖 Pick PR #60157 (fix automatic type acquisition) into release-5.6 (#60169)
  • See full diff in compare view

Updates typescript-eslint from 8.5.0 to 8.11.0

Release notes

Sourced from typescript-eslint's releases.

v8.11.0

8.11.0 (2024-10-21)

🚀 Features

  • eslint-plugin: [no-base-to-string] add support for catching toLocaleString (#10138)
  • eslint-plugin: [no-unnecessary-type-parameters] add suggestion fixer (#10149)

🩹 Fixes

  • eslint-plugin: [class-literal-property-style] don't report nodes with override keyword (#10135)
  • rule-tester: allow custom filename outside directory (#10147)

❤️ Thank You

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

v8.10.0

8.10.0 (2024-10-17)

🚀 Features

  • support TypeScript 5.6 (#9972)

🩹 Fixes

  • typescript-eslint: propagate name field to extended configs in config helper (#10094)

❤️ Thank You

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

v8.9.0

8.9.0 (2024-10-14)

🚀 Features

  • rule-tester: hooks for test cases (#10109)

🩹 Fixes

  • eslint-plugin: [no-unnecessary-type-parameters] cannot assume variables are either type or value (#10093)

... (truncated)

Changelog

Sourced from typescript-eslint's changelog.

8.11.0 (2024-10-21)

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.

8.10.0 (2024-10-17)

🩹 Fixes

  • typescript-eslint: propagate name field to extended configs in config helper (#10094)

❤️ Thank You

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

8.9.0 (2024-10-14)

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.

8.8.1 (2024-10-07)

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.

8.8.0 (2024-09-30)

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.

8.7.0 (2024-09-23)

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.

8.6.0 (2024-09-16)

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
  • 79c27a8 chore(release): publish 8.11.0
  • 7effdea chore(release): publish 8.10.0
  • be5bc0f fix(typescript-eslint): propagate name field to extended configs in `config...
  • 4666ed4 chore(release): publish 8.9.0
  • f898248 chore(release): publish 8.8.1
  • 2055cfb chore(release): publish 8.8.0
  • b88ea33 chore(release): publish 8.7.0
  • 343710e chore(release): publish 8.6.0
  • See full diff in compare view

Updates vite from 5.4.5 to 5.4.10

Release notes

Sourced from vite's releases.

v5.4.10

Please refer to CHANGELOG.md for details.

v5.4.9

Please refer to CHANGELOG.md for details.

v5.4.8

Please refer to CHANGELOG.md for details.

v5.4.7

Please refer to CHANGELOG.md for details.

v5.4.6

Please refer to CHANGELOG.md for details.

Changelog

Sourced from vite's changelog.

5.4.10 (2024-10-23)

  • fix: backport #18367,augment hash for CSS files to prevent chromium erroring by loading previous fil (7d1a3bc), closes #18367 #18412

5.4.9 (2024-10-14)

5.4.8 (2024-09-25)

5.4.7 (2024-09-20)

5.4.6 (2024-09-16)

Commits

Updates @rollup/plugin-replace from 5.0.7 to 6.0.1

Changelog

Sourced from @​rollup/plugin-replace's changelog.

v6.0.1

2024-09-23

Bugfixes

  • fix: The preventAssignment option is treated as a value to replace (#1768)

v6.0.0

2024-09-23

Breaking Changes

  • fix!: objectGuards doesn't take effects (#1764)
Commits
  • 4bd1beb run prettier on changelog (#958)
  • bc15173 chore(release): replace v3.0.0
  • 93cf0a7 fix(replace)!: issues with nested objects replacements (#903)
  • ceb882f chore(repo): Enforce prettier on CI (#941)
  • e32a9e9 chore(repo): update linting, prettier configuration
  • 8205497 chore(repo): automatically publish packages (#940)
  • 81781a8 chore(repo): fix the prepublishOnly scripts for most plugins
  • 65ebb11 pnpm lockfile, publish adjustments, linting fixes
  • fba0a6b chore(repo): remove circle ci, add validate workflow, update deps (#867)
  • See full diff in compare view

Updates @rollup/plugin-typescript from 11.1.6 to 12.1.1

Changelog

Sourced from @​rollup/plugin-typescript's changelog.

v12.1.1

2024-10-16

Bugfixes

  • fix: allow for files to be nested in folders within outDir (#1783)

v12.1.0

2024-09-22

Features

  • feat: add transformers factory. (#1668)

v12.0.0

2024-09-22

Breaking Changes

  • fix!: correctly resolve filenames of declaration files for output.file (#1728)
Commits
  • c358dae chore(release): typescript v12.1.1
  • cc55c44 fix(typescript): allow for files to be nested in folders within outDir (#1783)
  • 28b9701 chore(release): typescript v12.1.0
  • 2c09b57 feat(typescript): add transformers factory. (#1668)
  • 5afda37 chore(release): typescript v12.0.0
  • a85b649 fix(typescript)!: correctly resolve filenames of declaration files for `outpu...
  • See full diff in compare view

Updates rollup from 4.21.3 to 4.24.2

Release notes

Sourced from rollup's releases.

v4.24.2

4.24.2

2024-10-27

Bug Fixes

  • Add missing build dependency (#5705)

Pull Requests

  • #5705: Fix "Couldn't find package" error when installing rollup using yarn (@​tagattie)

v4.24.1

4.24.1

2024-10-27

Bug Fixes

  • Support running Rollup natively on FreeBSD (#5698)

Pull Requests

v4.24.0

4.24.0

2024-10-02

Features

  • Support preserving and transpiling JSX syntax (#5668)

Pull Requests

v4.23.0

4.23.0

2024-10-01

... (truncated)

Changelog

Sourced from rollup's changelog.

4.24.2

2024-10-27

Bug Fixes

  • Add missing build dependency (#5705)

Pull Requests

  • #5705: Fix "Couldn't find package" error when installing rollup using yarn (@​tagattie)

4.24.1

2024-10-27

Bug Fixes

  • Support running Rollup natively on FreeBSD (#5698)

Pull Requests

4.24.0

2024-10-02

Features

  • Support preserving and transpiling JSX syntax (#5668)

Pull Requests

4.23.0

2024-10-01

Features

  • Collect all emitted names and originalFileNames for assets (#5686)

... (truncated)

Commits
  • 32d0e7d 4.24.2
  • 85226fd Fix "Couldn't find package" error when installing rollup using yarn (#5705)
  • 88a54d8 4.24.1
  • b9ff676 Add support for FreeBSD (x64 and arm64) (#5698)
  • 9048a4f chore(deps): lock file maintenance minor/patch updates (#5696)
  • 028e47c fix(deps): update swc monorepo (major) (#5695)
  • 9ac8891 chore(deps): lock file maintenance minor/patch updates (#5692)
  • 29cd524 chore(deps): update dependency eslint-plugin-unicorn to v56 (#5691)
  • 366e4d0 chore(deps): update dependency @​inquirer/prompts to v7 (#5690)
  • 5d91210 chore(deps): lock file maintenance minor/patch updates (#5689)
  • Additional commits viewable in compare view

Updates tslib from 2.7.0 to 2.8.0

Release notes

Sourced from tslib's releases.

v2.8.0

What's Changed

Full Changelog: microsoft/tslib@v2.7.0...v2.8.0

Commits

Updates @rollup/plugin-replace from 5.0.7 to 6.0.1

Changelog

Sourced from @​rollup/plugin-replace's changelog.

v6.0.1

2024-09-23

Bugfixes

  • fix: The preventAssignment option is treated as a value to replace (#1768)

v6.0.0

2024-09-23

Breaking Changes

  • fix!: objectGuards doesn't take effects (#1764)
Commits
  • 4bd1beb run prettier on changelog (#958)
  • bc15173 chore(release): replace v3.0.0
  • 93cf0a7 fix(replace)!: issues with nested objects replacements (#903)
  • ceb882f chore(repo): Enforce prettier on CI (#941)
  • e32a9e9 chore(repo): update linting, prettier configuration
  • 8205497 chore(repo): automatically publish packages (#940)
  • 81781a8 chore(repo): fix the prepublishOnly scripts for most plugins
  • 65ebb11 pnpm lockfile, publish adjustments, linting fixes
  • fba0a6b chore(repo): remove circle ci, add validate workflow, update deps (#867)
  • See full diff in compare view

Updates @rollup/plugin-typescript from 11.1.6 to 12.1.1

Changelog

Sourced from @​rollup/plugin-typescript's changelog.

v12.1.1

2024-10-16

Bugfixes

  • fix: allow for files to be nested in folders within outDir (#1783)

v12.1.0

2024-09-22

Features

  • feat: add transformers factory. (#1668)

v12.0.0

2024-09-22

Breaking Changes

  • fix!: correctly resolve filenames of declaration files for output.file (#1728)
Commits
  • c358dae chore(release): typescript v12.1.1
  • cc55c44 fix(typescript): allow for files to be nested in folders within outDir (#1783)
  • 28b9701 chore(release): typescript v12.1.0
  • 2c09b57 feat(typescript): add transformers factory. (#1668)
  • 5afda37 chore(release): typescript v12.0.0
  • a85b649 fix(typescript)!: correctly resolve filenames of declaration files for `outpu...
  • See full diff in compare view

Updates @rollup/plugin-typescript from 11.1.6 to 12.1.1

Changelog

Sourced from @​rollup/plugin-typescript's changelog.

v12.1.1

2024-10-16

Bugfixes

  • fix: allow for files to be nested in folders within outDir (#1783)

v12.1.0

2024-09-22

Features

  • feat: add transformers factory. (#1668)

v12.0.0

2024-09-22

Breaking Changes

  • fix!: correctly resolve filenames of declaration files for output.file (#1728)
Commits
  • c358dae chore(release): typescript v12.1.1
  • cc55c44 fix(typescript): allow for files to be nested in folders within outDir (#1783)
  • 28b9701 chore(release): typescript v12.1.0
  • 2c09b57 feat(typescript): add transformers factory. (#1668)
  • 5afda37 chore(release): typescript v12.0.0
  • a85b649 fix(typescript)!: correctly resolve filenames of declaration files for `outpu...
  • See full diff in compare view

Updates @rollup/plugin-typescript from 11.1.6 to 12.1.1

Changelog

Sourced from @​rollup/plugin-typescript's changelog.

v12.1.1

2024-10-16

Bugfixes

  • fix: allow for files to be nested in folders within outDir (#1783)

v12.1.0

2024-09-22

Features

  • feat: add transformers factory. (#1668)

v12.0.0

2024-09-22

Breaking Changes

  • fix!: correctly resolve filenames of declaration files for output.file (#1728)
Commits
  • c358dae chore(release): typescript v12.1.1
  • cc55c44 fix(typescript): allow for files to be nested in folders within outDir (#1783)
  • 28b9701 chore(release): typescript v12.1.0
  • 2c09b57 feat(typescript): add transformers factory. (#1668)
  • 5afda37 chore(release): typescript v12.0.0
  • a85b649 fix(typescript)!: correctly resolve filenames of declaration files for `outpu...
  • 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 dev group with 12 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) | `22.5.5` | `22.8.1` |
| [@types/react](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react) | `18.3.6` | `18.3.12` |
| [@types/react-dom](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react-dom) | `18.3.0` | `18.3.1` |
| [@vitejs/plugin-react](https://github.com/vitejs/vite-plugin-react/tree/HEAD/packages/plugin-react) | `4.3.1` | `4.3.3` |
| [globals](https://github.com/sindresorhus/globals) | `15.9.0` | `15.11.0` |
| [typescript](https://github.com/microsoft/TypeScript) | `5.6.2` | `5.6.3` |
| [typescript-eslint](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/typescript-eslint) | `8.5.0` | `8.11.0` |
| [vite](https://github.com/vitejs/vite/tree/HEAD/packages/vite) | `5.4.5` | `5.4.10` |
| [@rollup/plugin-replace](https://github.com/rollup/plugins/tree/HEAD/packages/replace) | `5.0.7` | `6.0.1` |
| [@rollup/plugin-typescript](https://github.com/rollup/plugins/tree/HEAD/packages/typescript) | `11.1.6` | `12.1.1` |
| [rollup](https://github.com/rollup/rollup) | `4.21.3` | `4.24.2` |
| [tslib](https://github.com/Microsoft/tslib) | `2.7.0` | `2.8.0` |

Bumps the dev group with 2 updates in the /tooling/apis directory: [@rollup/plugin-replace](https://github.com/rollup/plugins/tree/HEAD/packages/replace) and [@rollup/plugin-typescript](https://github.com/rollup/plugins/tree/HEAD/packages/typescript).
Bumps the dev group with 1 update in the /tooling/react directory: [@rollup/plugin-typescript](https://github.com/rollup/plugins/tree/HEAD/packages/typescript).
Bumps the dev group with 1 update in the /tooling/ui directory: [@rollup/plugin-typescript](https://github.com/rollup/plugins/tree/HEAD/packages/typescript).


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

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

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

Updates `@vitejs/plugin-react` from 4.3.1 to 4.3.3
- [Release notes](https://github.com/vitejs/vite-plugin-react/releases)
- [Changelog](https://github.com/vitejs/vite-plugin-react/blob/main/packages/plugin-react/CHANGELOG.md)
- [Commits](https://github.com/vitejs/vite-plugin-react/commits/v4.3.3/packages/plugin-react)

Updates `globals` from 15.9.0 to 15.11.0
- [Release notes](https://github.com/sindresorhus/globals/releases)
- [Commits](sindresorhus/globals@v15.9.0...v15.11.0)

Updates `typescript` from 5.6.2 to 5.6.3
- [Release notes](https://github.com/microsoft/TypeScript/releases)
- [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml)
- [Commits](microsoft/TypeScript@v5.6.2...v5.6.3)

Updates `typescript-eslint` from 8.5.0 to 8.11.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.11.0/packages/typescript-eslint)

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

Updates `@rollup/plugin-replace` from 5.0.7 to 6.0.1
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/replace/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/json-v6.0.1/packages/replace)

Updates `@rollup/plugin-typescript` from 11.1.6 to 12.1.1
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/typescript/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/typescript-v12.1.1/packages/typescript)

Updates `rollup` from 4.21.3 to 4.24.2
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/master/CHANGELOG.md)
- [Commits](rollup/rollup@v4.21.3...v4.24.2)

Updates `tslib` from 2.7.0 to 2.8.0
- [Release notes](https://github.com/Microsoft/tslib/releases)
- [Commits](microsoft/tslib@v2.7.0...v2.8.0)

Updates `@rollup/plugin-replace` from 5.0.7 to 6.0.1
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/replace/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/json-v6.0.1/packages/replace)

Updates `@rollup/plugin-typescript` from 11.1.6 to 12.1.1
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/typescript/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/typescript-v12.1.1/packages/typescript)

Updates `@rollup/plugin-typescript` from 11.1.6 to 12.1.1
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/typescript/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/typescript-v12.1.1/packages/typescript)

Updates `@rollup/plugin-typescript` from 11.1.6 to 12.1.1
- [Changelog](https://github.com/rollup/plugins/blob/master/packages/typescript/CHANGELOG.md)
- [Commits](https://github.com/rollup/plugins/commits/typescript-v12.1.1/packages/typescript)

---
updated-dependencies:
- dependency-name: "@types/node"
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: "@types/react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: "@types/react-dom"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: "@vitejs/plugin-react"
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: globals
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: typescript
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: typescript-eslint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: vite
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dev
- dependency-name: "@rollup/plugin-replace"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev
- dependency-name: "@rollup/plugin-typescript"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev
- dependency-name: rollup
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: tslib
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dev
- dependency-name: "@rollup/plugin-replace"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev
- dependency-name: "@rollup/plugin-typescript"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev
- dependency-name: "@rollup/plugin-typescript"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev
- dependency-name: "@rollup/plugin-typescript"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dev
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 28, 2024
Copy link

❌ Failed to Build Deskulpt

There seems to be some issues with the build process for certain platforms. Please check the logs in the failing workflow run for more details and fix the issues accordingly.

Workflow file: .github/workflows/build.yaml. Generated for commit: d94f577.

Copy link
Contributor Author

dependabot bot commented on behalf of github Nov 4, 2024

Superseded by #301.

@dependabot dependabot bot closed this Nov 4, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dev-957160271c branch November 4, 2024 10:08
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.

0 participants