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 dependencies group with 17 updates #204

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 5, 2024

Bumps the dependencies group with 17 updates:

Package From To
marked 4.3.0 12.0.0
prettier 2.8.8 3.2.5
react-redux 8.1.3 9.1.0
redux 4.2.1 5.0.1
sharp 0.32.6 0.33.2
@commitlint/cli 17.8.1 18.6.0
@commitlint/config-conventional 17.8.1 18.6.0
chai 4.4.1 5.0.3
copy-webpack-plugin 11.0.0 12.0.2
html-webpack-plugin 5.5.0 5.6.0
husky 8.0.3 9.0.10
less-loader 11.1.4 12.2.0
lint-staged 13.3.0 15.2.1
markdownlint 0.26.2 0.33.0
markdownlint-cli 0.32.2 0.39.0
stylelint 14.16.1 16.2.1
stylelint-config-standard 28.0.0 36.0.0

Updates marked from 4.3.0 to 12.0.0

Release notes

Sourced from marked's releases.

v12.0.0

12.0.0 (2024-02-03)

Bug Fixes

BREAKING CHANGES

  • changes to spec
  • Update HTML block tags: add search, remove source
  • Update punctuation to include unicode punctuation and symbol categories
  • Update HTML comment to include and

v11.2.0

11.2.0 (2024-01-27)

Bug Fixes

Features

v11.1.1

11.1.1 (2023-12-31)

Bug Fixes

  • improve lexing inline elements step's performance (#3146) (4f87b2a)

v11.1.0

11.1.0 (2023-12-12)

Features

v11.0.1

11.0.1 (2023-12-08)

... (truncated)

Commits
  • cd15160 chore(release): 12.0.0 [skip ci]
  • 3d9017b fix: update to commonmark specs 0.31 (#3176)
  • 365e720 chore(deps-dev): Bump @​arethetypeswrong/cli from 0.13.5 to 0.13.6 (#3181)
  • 2bf0645 chore(deps-dev): Bump @​typescript-eslint/eslint-plugin from 6.19.0 to 6.19.1 ...
  • a26db80 chore(deps-dev): Bump @​typescript-eslint/parser from 6.19.0 to 6.19.1 (#3180)
  • ee9e20e chore(deps-dev): Bump dts-bundle-generator from 9.2.4 to 9.2.5 (#3178)
  • f0507cb chore(release): 11.2.0 [skip ci]
  • 4826841 feat: flatten childToken arrays (#3172)
  • bf44ae8 fix: Fix ENOENT error message in CLI (#3165)
  • 47a140a chore(deps-dev): Bump @​typescript-eslint/parser from 6.18.1 to 6.19.0 (#3175)
  • Additional commits viewable in compare view

Updates prettier from 2.8.8 to 3.2.5

Release notes

Sourced from prettier's releases.

3.2.5

🔗 Changelog

3.2.4

  • Fix .eslintrc.json format #15947

🔗 Changelog

3.2.3

  • Format tsconfig.json file with jsonc parser #15927

🔗 Changelog

3.2.2

🔗 Changelog

3.2.1

🔗 Changelog

3.2.0

diff

🔗 Release note

3.1.1

🔗 Changelog

3.1.0

diff

🔗 Release note

3.0.3

🔗 Changelog

3.0.2

🔗 Changelog

3.0.1

🔗 Changelog

3.0.0

diff

🔗 Release note

3.0.0-alpha.6

What's Changed

... (truncated)

Changelog

Sourced from prettier's changelog.

3.2.5

diff

Support Angular inline styles as single template literal (#15968 by @​sosukesuzuki)

Angular v17 supports single string inline styles.

// Input
@Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}
// Prettier 3.2.4
@​Component({
template: &lt;div&gt;...&lt;/div&gt;,
styles: h1 { color: blue; },
})
export class AppComponent {}
// Prettier 3.2.5
@​Component({
template: &lt;div&gt;...&lt;/div&gt;,
styles: h1 { color: blue; },
})
export class AppComponent {}

Unexpected embedded formatting for Angular template (#15969 by @​JounQin)

Computed template should not be considered as Angular component template

// Input
const template = "foobar";
@​Component({
[template]: &lt;h1&gt;{{       hello }}&lt;/h1&gt;,
})
export class AppComponent {}
</tr></table>

... (truncated)

Commits

Updates react-redux from 8.1.3 to 9.1.0

Release notes

Sourced from react-redux's releases.

v9.1.0

This minor release adds a new syntax for pre-typing hooks.

.withTypes

Previously, the approach for "pre-typing" hooks with your app settings was a little varied. The result would look something like the below:

import type { TypedUseSelectorHook } from "react-redux"
import { useDispatch, useSelector, useStore } from "react-redux"
import type { AppDispatch, AppStore, RootState } from "./store"
export const useAppDispatch: () => AppDispatch = useDispatch
export const useAppSelector: TypedUseSelectorHook<RootState> = useSelector
export const useAppStore = useStore as () => AppStore

React Redux v9.1.0 adds a new .withTypes method to each of these hooks, analogous to the .withTypes method found on Redux Toolkit's createAsyncThunk.

The setup now becomes:

import { useDispatch, useSelector, useStore } from "react-redux"
import type { AppDispatch, AppStore, RootState } from "./store"
export const useAppDispatch = useDispatch.withTypes<AppDispatch>()
export const useAppSelector = useSelector.withTypes<RootState>()
export const useAppStore = useStore.withTypes<AppStore>()

What's Changed

New Contributors

Full Changelog: reduxjs/react-redux@v9.0.4...v9.1.0

v9.0.4

This bugfix release updates the React Native peer dependency to be >= 0.69, to better reflect the need for React 18 compat and (hopefully) resolve issues with the npm package manager throwing peer dep errors on install.

What's Changed

Full Changelog: reduxjs/react-redux@v9.0.3...v9.0.4

v9.0.3

This bugfix release drops the ReactDOM / React Native specific use of render batching, as React 18 now automatically batches, and updates the React types dependencies

... (truncated)

Commits

Updates redux from 4.2.1 to 5.0.1

Release notes

Sourced from redux's releases.

v5.0.1

This patch release adjusts the isPlainObject util to allow objects created via Object.create(null), and fixes a type issue which accidentally made the store state type non-nullable.

What's Changed

Full Changelog: reduxjs/redux@v5.0.0...v5.0.1

v5.0.0

This major release:

  • Converts the codebase to TypeScript
  • Updates the packaging for better ESM/CJS compatibility and modernizes the build output
  • Requires that action.type must be a string
  • Continues to mark createStore as deprecated
  • Deprecates the AnyAction type in favor of an UnknownAction type that is used everywhere
  • Removes the PreloadedState type in favor of a new generic argument for the Reducer type.

This release has breaking changes.

This release is part of a wave of major versions of all the Redux packages: Redux Toolkit 2.0, Redux core 5.0, React-Redux 9.0, Reselect 5.0, and Redux Thunk 3.0.

For full details on all of the breaking changes and other significant changes to all of those packages, see the "Migrating to RTK 2.0 and Redux 5.0" migration guide in the Redux docs.

[!NOTE] The Redux core, Reselect, and Redux Thunk packages are included as part of Redux Toolkit, and RTK users do not need to manually upgrade them - you'll get them as part of the upgrade to RTK 2.0. (If you're not using Redux Toolkit yet, please start migrating your existing legacy Redux code to use Redux Toolkit today!)

# RTK
npm install @reduxjs/toolkit
yarn add @reduxjs/toolkit
Standalone
npm install redux
yarn add redux

Changelog

ESM/CJS Package Compatibility

The biggest theme of the Redux v5 and RTK 2.0 releases is trying to get "true" ESM package publishing compatibility in place, while still supporting CJS in the published package.

The primary build artifact is now an ESM file, dist/redux.mjs. Most build tools should pick this up. There's also a CJS artifact, and a second copy of the ESM file named redux.legacy-esm.js to support Webpack 4 (which does not recognize the exports field in package.json). Additionally, all of the build artifacts now live under ./dist/ in the published package.

Modernized Build Output

We now publish modern JS syntax targeting ES2020, including optional chaining, object spread, and other modern syntax. If you need to

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by phryneas, a new releaser for redux since your current version.


Updates sharp from 0.32.6 to 0.33.2

Changelog

Sourced from sharp's changelog.

v0.33.2 - 12th January 2024

  • Upgrade to libvips v8.15.1 for upstream bug fixes.

  • TypeScript: add definition for keepMetadata. #3914 @​abhi0498

  • Ensure extend operation stays sequential when copying (regression in 0.32.0). #3928

  • Improve error handling for unsupported multi-page rotation. #3940

v0.33.1 - 17th December 2023

  • Add support for Yarn Plug'n'Play filesystem layout. #3888

  • Emit warning when attempting to use invalid ICC profiles. #3895

  • Ensure VIPS_NOVECTOR environment variable is respected. #3897 @​icetee

v0.33.0 - 29th November 2023

  • Drop support for Node.js 14 and 16, now requires Node.js ^18.17.0 or >= 20.3.0

  • Prebuilt binaries distributed via npm registry and installed via package manager.

  • Building from source requires dependency on node-addon-api.

  • Remove sharp.vendor.

  • Partially deprecate withMetadata(), use withExif() and withIccProfile().

  • Add experimental support for WebAssembly-based runtimes. @​RReverser

  • Options for trim operation must be an Object, add new lineArt option. #2363

  • Improve luminance of tint operation with weighting function. #3338 @​jcupitt

  • Ensure all Error objects contain a stack property. #3653

... (truncated)

Commits
  • bcb22af Release v0.33.2
  • d04dc62 Prerelease v0.33.2-rc.1
  • c30d355 CI: Fix npm smoke test expectation
  • 49cb148 Prerelease v0.33.2-rc.0
  • 3bc31a8 CI: Verify emscripten versions match
  • c28523e CI: Update Emscripten Docker image to 3.1.51 (#3907)
  • 278f393 Upgrade to libvips v8.15.1
  • cbf68c1 Improve error for unsupported multi-page rotation #3940
  • 45e8071 Add runtime check for outdated Node.js version
  • b96389d Docs: refresh index
  • Additional commits viewable in compare view

Updates @commitlint/cli from 17.8.1 to 18.6.0

Release notes

Sourced from @​commitlint/cli's releases.

v18.6.0

18.6.0 (2024-01-25)

Features

Full Changelog: conventional-changelog/commitlint@v18.5.1...v18.6.0

v18.5.1

18.5.1 (2024-01-22)

Bug Fixes

Full Changelog: conventional-changelog/commitlint@v18.5.0...v18.5.1

v18.5.0

18.5.0 (2024-01-22)

Bug Fixes

  • config-nx-scopes: restore compatibility with nx 17.2.0 and higher (#3855) (1e08a17), closes #3820

Features

  • cli: print-config now can be configured to print a json in stdout (#3863) (6381a2d), closes #3819

Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v18.4.4...v18.5.0

... (truncated)

Changelog

Sourced from @​commitlint/cli's changelog.

18.6.0 (2024-01-25)

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

18.5.0 (2024-01-22)

Features

  • cli: print-config now can be configured to print a json in stdout (#3863) (6381a2d), closes #3819

18.4.4 (2024-01-04)

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

18.4.3 (2023-11-21)

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

18.4.2 (2023-11-16)

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

18.4.1 (2023-11-12)

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

... (truncated)

Commits

Updates @commitlint/config-conventional from 17.8.1 to 18.6.0

Release notes

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

v18.6.0

18.6.0 (2024-01-25)

Features

Full Changelog: conventional-changelog/commitlint@v18.5.1...v18.6.0

v18.5.1

18.5.1 (2024-01-22)

Bug Fixes

Full Changelog: conventional-changelog/commitlint@v18.5.0...v18.5.1

v18.5.0

18.5.0 (2024-01-22)

Bug Fixes

  • config-nx-scopes: restore compatibility with nx 17.2.0 and higher (#3855) (1e08a17), closes #3820

Features

  • cli: print-config now can be configured to print a json in stdout (#3863) (6381a2d), closes #3819

Chore

New Contributors

Full Changelog: conventional-changelog/commitlint@v18.4.4...v18.5.0

... (truncated)

Changelog

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

18.6.0 (2024-01-25)

Features

18.5.0 (2024-01-22)

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

18.4.4 (2024-01-04)

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

18.4.3 (2023-11-21)

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

18.4.2 (2023-11-16)

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

18.4.0 (2023-11-10)

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

... (truncated)

Commits

Updates chai from 4.4.1 to 5.0.3

Release notes

Sourced from chai's releases.

v5.0.3

Fix bad v5.0.2 publish.

Full Changelog: chaijs/chai@v5.0.2...v5.0.3

v5.0.2

What's Changed

Full Changelog: chaijs/chai@v5.0.1...v5.0.2

v5.0.0

BREAKING CHANGES

  • Chai now only supports EcmaScript Modules (ESM). This means your tests will need to either have import {...} from 'chai' or import('chai'). require('chai') will cause failures in nodejs. If you're using ESM and seeing failures, it may be due to a bundler or transpiler which is incorrectly converting import statements into require calls.
  • Dropped support for Internet Explorer.
  • Dropped support for NodeJS < 18.
  • Minimum supported browsers are now Firefox 100, Safari 14.1, Chrome 100, Edge 100. Support for browsers prior to these versions is "best effort" (bug reports on older browsers will be assessed individually and may be marked as wontfix).

What's Changed

New Contributors

... (truncated)

Commits

Updates copy-webpack-plugin from 11.0.0 to 12.0.2

Release notes

Sourced from copy-webpack-plugin's releases.

v12.0.2

12.0.2 (2024-01-17)

Bug Fixes

v12.0.1

12.0.1 (2024-01-11)

Bug Fixes

v12.0.0

12.0.0 (2024-01-10)

⚠ BREAKING CHANGES

  • update globby to 14.0.0
  • minimum supported Node.js version is 18.12.0 (#759) (a5b7d06)
Changelog

Sourced from copy-webpack-plugin's changelog.

12.0.2 (2024-01-17)

Bug Fixes

12.0.1 (2024-01-11)

Bug Fixes

12.0.0 (2024-01-10)

⚠ BREAKING CHANGES

  • update globby to 14.0.0
  • minimum supported Node.js version is 18.12.0 (#759) (a5b7d06)
Commits

Updates html-webpack-plugin from 5.5.0 to 5.6.0

Changelog

Sourced from html-webpack-plugin's changelog.

5.6.0 (2023-12-19)

Features

  • add @rspack/core as an optional peer dependency (#1829) (56ff3ae)
  • Added support type=systemjs-module via the scriptLoading option (#1822) (7effc30)

Bug Fixes

5.5.4 (2023-12-06)

Bug Fixes

  • avoid have undefined type for script tags (#1809) (9959484)
  • reemit assets from loaders (#1811) (

Bumps the dependencies group with 17 updates:

| Package | From | To |
| --- | --- | --- |
| [marked](https://github.com/markedjs/marked) | `4.3.0` | `12.0.0` |
| [prettier](https://github.com/prettier/prettier) | `2.8.8` | `3.2.5` |
| [react-redux](https://github.com/reduxjs/react-redux) | `8.1.3` | `9.1.0` |
| [redux](https://github.com/reduxjs/redux) | `4.2.1` | `5.0.1` |
| [sharp](https://github.com/lovell/sharp) | `0.32.6` | `0.33.2` |
| [@commitlint/cli](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli) | `17.8.1` | `18.6.0` |
| [@commitlint/config-conventional](https://github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/config-conventional) | `17.8.1` | `18.6.0` |
| [chai](https://github.com/chaijs/chai) | `4.4.1` | `5.0.3` |
| [copy-webpack-plugin](https://github.com/webpack-contrib/copy-webpack-plugin) | `11.0.0` | `12.0.2` |
| [html-webpack-plugin](https://github.com/jantimon/html-webpack-plugin) | `5.5.0` | `5.6.0` |
| [husky](https://github.com/typicode/husky) | `8.0.3` | `9.0.10` |
| [less-loader](https://github.com/webpack-contrib/less-loader) | `11.1.4` | `12.2.0` |
| [lint-staged](https://github.com/okonet/lint-staged) | `13.3.0` | `15.2.1` |
| [markdownlint](https://github.com/DavidAnson/markdownlint) | `0.26.2` | `0.33.0` |
| [markdownlint-cli](https://github.com/igorshubovych/markdownlint-cli) | `0.32.2` | `0.39.0` |
| [stylelint](https://github.com/stylelint/stylelint) | `14.16.1` | `16.2.1` |
| [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard) | `28.0.0` | `36.0.0` |


Updates `marked` from 4.3.0 to 12.0.0
- [Release notes](https://github.com/markedjs/marked/releases)
- [Changelog](https://github.com/markedjs/marked/blob/master/.releaserc.json)
- [Commits](markedjs/marked@v4.3.0...v12.0.0)

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

Updates `react-redux` from 8.1.3 to 9.1.0
- [Release notes](https://github.com/reduxjs/react-redux/releases)
- [Changelog](https://github.com/reduxjs/react-redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/react-redux@v8.1.3...v9.1.0)

Updates `redux` from 4.2.1 to 5.0.1
- [Release notes](https://github.com/reduxjs/redux/releases)
- [Changelog](https://github.com/reduxjs/redux/blob/master/CHANGELOG.md)
- [Commits](reduxjs/redux@v4.2.1...v5.0.1)

Updates `sharp` from 0.32.6 to 0.33.2
- [Release notes](https://github.com/lovell/sharp/releases)
- [Changelog](https://github.com/lovell/sharp/blob/main/docs/changelog.md)
- [Commits](lovell/sharp@v0.32.6...v0.33.2)

Updates `@commitlint/cli` from 17.8.1 to 18.6.0
- [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/v18.6.0/@commitlint/cli)

Updates `@commitlint/config-conventional` from 17.8.1 to 18.6.0
- [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/v18.6.0/@commitlint/config-conventional)

Updates `chai` from 4.4.1 to 5.0.3
- [Release notes](https://github.com/chaijs/chai/releases)
- [Changelog](https://github.com/chaijs/chai/blob/main/History.md)
- [Commits](chaijs/chai@v4.4.1...v5.0.3)

Updates `copy-webpack-plugin` from 11.0.0 to 12.0.2
- [Release notes](https://github.com/webpack-contrib/copy-webpack-plugin/releases)
- [Changelog](https://github.com/webpack-contrib/copy-webpack-plugin/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/copy-webpack-plugin@v11.0.0...v12.0.2)

Updates `html-webpack-plugin` from 5.5.0 to 5.6.0
- [Release notes](https://github.com/jantimon/html-webpack-plugin/releases)
- [Changelog](https://github.com/jantimon/html-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](jantimon/html-webpack-plugin@v5.5.0...v5.6.0)

Updates `husky` from 8.0.3 to 9.0.10
- [Release notes](https://github.com/typicode/husky/releases)
- [Commits](typicode/husky@v8.0.3...v9.0.10)

Updates `less-loader` from 11.1.4 to 12.2.0
- [Release notes](https://github.com/webpack-contrib/less-loader/releases)
- [Changelog](https://github.com/webpack-contrib/less-loader/blob/master/CHANGELOG.md)
- [Commits](webpack-contrib/less-loader@v11.1.4...v12.2.0)

Updates `lint-staged` from 13.3.0 to 15.2.1
- [Release notes](https://github.com/okonet/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/master/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v13.3.0...v15.2.1)

Updates `markdownlint` from 0.26.2 to 0.33.0
- [Changelog](https://github.com/DavidAnson/markdownlint/blob/main/CHANGELOG.md)
- [Commits](DavidAnson/markdownlint@v0.26.2...v0.33.0)

Updates `markdownlint-cli` from 0.32.2 to 0.39.0
- [Release notes](https://github.com/igorshubovych/markdownlint-cli/releases)
- [Commits](igorshubovych/markdownlint-cli@v0.32.2...v0.39.0)

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

Updates `stylelint-config-standard` from 28.0.0 to 36.0.0
- [Release notes](https://github.com/stylelint/stylelint-config-standard/releases)
- [Changelog](https://github.com/stylelint/stylelint-config-standard/blob/main/CHANGELOG.md)
- [Commits](stylelint/stylelint-config-standard@28.0.0...36.0.0)

---
updated-dependencies:
- dependency-name: marked
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: prettier
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: react-redux
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: redux
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: sharp
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@commitlint/cli"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: "@commitlint/config-conventional"
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: chai
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: copy-webpack-plugin
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: html-webpack-plugin
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: husky
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: less-loader
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: lint-staged
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: markdownlint
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: markdownlint-cli
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: stylelint
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: stylelint-config-standard
  dependency-type: direct:development
  update-type: version-update:semver-major
  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 Feb 5, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Feb 5, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Feb 5, 2024
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/dependencies-b83f4b0789 branch February 5, 2024 09:12
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.

1 participant