Skip to content

chore(deps): Bump the dependencies group across 1 directory with 21 updates#22

Merged
swingerman merged 1 commit intomainfrom
dependabot/npm_and_yarn/dependencies-20167c9aec
Dec 26, 2025
Merged

chore(deps): Bump the dependencies group across 1 directory with 21 updates#22
swingerman merged 1 commit intomainfrom
dependabot/npm_and_yarn/dependencies-20167c9aec

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Dec 22, 2025

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

Package From To
nodemon 3.1.10 3.1.11
sass 1.93.2 1.97.1
stylelint 16.25.0 16.26.1
@babel/helper-validator-identifier 7.27.1 7.28.5
es-abstract 1.24.0 1.24.1
fs-extra 11.3.2 11.3.3
immutable 5.1.3 5.1.4
js-yaml 4.1.0 4.1.1
postcss-selector-parser 7.1.0 7.1.1
resolve 1.22.10 1.22.11
stylelint-config-standard 39.0.0 39.0.1
stylelint-scss 6.12.1 6.13.0
yaml 2.8.1 2.8.2

Updates nodemon from 3.1.10 to 3.1.11

Release notes

Sourced from nodemon's releases.

v3.1.11

3.1.11 (2025-11-11)

Bug Fixes

Commits

Updates sass from 1.93.2 to 1.97.1

Release notes

Sourced from sass's releases.

Dart Sass 1.97.1

To install Sass 1.97.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Fix a bug with the new CSS-style if() syntax where values would be evaluated even if their conditions didn't match.

See the full changelog for changes in earlier releases.

Dart Sass 1.97.0

To install Sass 1.97.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Add support for the display-p3-linear color space.

See the full changelog for changes in earlier releases.

Dart Sass 1.96.0

To install Sass 1.96.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • Allow numbers with complex units (more than one numerator unit or more than zero denominator units) to be emitted to CSS. These are now emitted as calc() expressions, which now support complex units in plain CSS.

See the full changelog for changes in earlier releases.

Dart Sass 1.95.1

To install Sass 1.95.1, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

Changes

  • No user-visible changes.

See the full changelog for changes in earlier releases.

Dart Sass 1.95.0

To install Sass 1.95.0, download one of the packages below and add it to your PATH, or see the Sass website for full installation instructions.

... (truncated)

Changelog

Sourced from sass's changelog.

1.97.1

  • Fix a bug with the new CSS-style if() syntax where values would be evaluated even if their conditions didn't match.

1.97.0

  • Add support for the display-p3-linear color space.

1.96.0

  • Allow numbers with complex units (more than one numerator unit or more than zero denominator units) to be emitted to CSS. These are now emitted as calc() expressions, which now support complex units in plain CSS.

1.95.1

  • No user-visible changes.

1.95.0

  • Add support for the CSS-style if() function. In addition to supporting the plain CSS syntax, this also supports a sass() query that takes a Sass expression that evaluates to true or false at preprocessing time depending on whether the Sass value is truthy. If there are no plain-CSS queries, the function will return the first value whose query returns true during preprocessing. For example, if(sass(false): 1; sass(true): 2; else: 3) returns 2.

  • The old Sass if() syntax is now deprecated. Users are encouraged to migrate to the new CSS syntax. if($condition, $if-true, $if-false) can be changed to if(sass($condition): $if-true; else: $if-false).

    See the Sass website for details.

  • Plain-CSS if() functions are now considered "special numbers", meaning that they can be used in place of arguments to CSS color functions.

  • Plain-CSS if() functions and attr() functions are now considered "special variable strings" (like var()), meaning they can now be used in place of multiple arguments or syntax fragments in various CSS functions.

1.94.3

  • Fix the span reported for standalone % expressions followed by whitespace.

1.94.2

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for sass since your current version.


Updates stylelint from 16.25.0 to 16.26.1

Release notes

Sourced from stylelint's releases.

16.26.1

It fixes numerous false positive bugs, including many in the declaration-property-value-no-unknown rule for the latest CSS specifications.

  • Fixed: *-no-unknown false positives for latest specs by integrating @csstools/css-syntax-patches-for-csstree (#8850) (@​romainmenke).
  • Fixed: at-rule-no-unknown false positives for @function (#8851) (@​jeddy3).
  • Fixed: declaration-property-value-no-unknown false positives for attr(), if() and custom functions (#8853) (@​jeddy3).
  • Fixed: function-url-quotes false positives when URLs require quoting (#8804) (@​taearls).
  • Fixed: selector-pseudo-element-no-unknown false positives for ::scroll-button() (#8856) (@​Mouvedia).

16.26.0

It adds 1 feature and fixes 2 bugs.

  • Added: support for customSyntax with function export (#8834) (@​silverwind).
  • Fixed: custom-property-no-missing-var-function false positives for style query in if() function (#8813) (@​sajdakabir).
  • Fixed: media-feature-range-notation false positives for multiple queries and except: exact-value (#8832) (@​jeddy3).
Changelog

Sourced from stylelint's changelog.

16.26.1 - 2025-11-28

It fixes numerous false positive bugs, including many in the declaration-property-value-no-unknown rule for the latest CSS specifications.

  • Fixed: *-no-unknown false positives for latest specs by integrating @csstools/css-syntax-patches-for-csstree (#8850) (@​romainmenke).
  • Fixed: at-rule-no-unknown false positives for @function (#8851) (@​jeddy3).
  • Fixed: declaration-property-value-no-unknown false positives for attr(), if() and custom functions (#8853) (@​jeddy3).
  • Fixed: function-url-quotes false positives when URLs require quoting (#8804) (@​taearls).
  • Fixed: selector-pseudo-element-no-unknown false positives for ::scroll-button() (#8856) (@​Mouvedia).

16.26.0 - 2025-11-21

It adds 1 feature and fixes 2 bugs.

  • Added: support for customSyntax with function export (#8834) (@​silverwind).
  • Fixed: custom-property-no-missing-var-function false positives for style query in if() function (#8813) (@​sajdakabir).
  • Fixed: media-feature-range-notation false positives for multiple queries and except: exact-value (#8832) (@​jeddy3).
Commits
  • b968143 Release 16.26.1 (#8857)
  • 2b24b9c Fix selector-pseudo-element-no-unknown false positives for `::scroll-button...
  • f152564 Fix *-no-unknown false positives for latest specs by integrating `@csstools...
  • 431cb53 Fix at-rule-no-unknown false positives for @function (#8851)
  • 119097e Fix declaration-property-value-no-unknown false positives for attr() and ...
  • 4b9c68b Fix function-url-quotes false positives when URLs require quoting (#8804)
  • 8cc4ced Bump rollup from 4.52.5 to 4.53.2 (#8848)
  • 4383feb Bump file-entry-cache from 11.1.0 to 11.1.1 (#8846)
  • a8a7560 Bump the eslint group with 2 updates (#8845)
  • 947ad33 Fix patch-package warning about mismatched @types/css-tree version (#8844)
  • Additional commits viewable in compare view

Updates @babel/helper-validator-identifier from 7.27.1 to 7.28.5

Release notes

Sourced from @​babel/helper-validator-identifier's releases.

v7.28.5 (2025-10-23)

Thank you @​CO0Ki3, @​Olexandr88, and @​youthfulhps for your first PRs!

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-proposal-destructuring-private
  • babel-parser
  • babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring
  • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-plugin-transform-block-scoping, babel-plugin-transform-optional-chaining, babel-traverse, babel-types
  • babel-traverse

🏠 Internal

🏃‍♀️ Performance

Committers: 8

v7.28.4 (2025-09-05)

Thanks @​gwillen and @​mrginglymus for your first PRs!

🏠 Internal

  • babel-core, babel-helper-check-duplicate-nodes, babel-traverse, babel-types
  • babel-plugin-transform-regenerator

... (truncated)

Changelog

Sourced from @​babel/helper-validator-identifier's changelog.

v7.28.5 (2025-10-23)

👓 Spec Compliance

🐛 Bug Fix

  • babel-plugin-proposal-destructuring-private
  • babel-parser
  • babel-plugin-proposal-discard-binding, babel-plugin-transform-destructuring
  • babel-helper-create-class-features-plugin, babel-helper-member-expression-to-functions, babel-plugin-transform-block-scoping, babel-plugin-transform-optional-chaining, babel-traverse, babel-types
  • babel-traverse

🏠 Internal

🏃‍♀️ Performance

v7.28.4 (2025-09-05)

🏠 Internal

v7.28.3 (2025-08-14)

👓 Spec Compliance

  • babel-helper-create-class-features-plugin, babel-plugin-proposal-decorators, babel-plugin-transform-class-static-block, babel-preset-env

🐛 Bug Fix

💅 Polish

  • babel-plugin-transform-regenerator, babel-plugin-transform-runtime

... (truncated)

Commits
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for @​babel/helper-validator-identifier since your current version.


Updates @cacheable/memory from 2.0.3 to 2.0.6

Commits

Updates @cacheable/utils from 2.0.3 to 2.3.2

Commits

Updates @keyv/bigmap from 1.0.2 to 1.3.0

Commits

Updates cacheable from 2.0.3 to 2.3.1

Commits

Updates es-abstract from 1.24.0 to 1.24.1

Changelog

Sourced from es-abstract's changelog.

1.24.1 / 2025-12-12

  • [Fix] ES2025+: GeneratorResumeAbrupt: properly handle return completions
  • [Dev Deps] update eslint, @ljharb/eslint-config, @unicode/unicode-15.0.0, make-generator-function, npmignore, ses
Commits
  • e195625 v1.24.1
  • a14e6e4 [Dev Deps] update eslint, @ljharb/eslint-config
  • fe07eeb [Fix] ES2025+: GeneratorResumeAbrupt: properly handle return completions
  • c753fe4 [Dev Deps] update eslint, @ljharb/eslint-config, `@unicode/unicode-15.0.0...
  • See full diff in compare view

Updates file-entry-cache from 10.1.4 to 11.1.1

Commits

Updates flat-cache from 6.1.17 to 6.1.19

Commits

Updates fs-extra from 11.3.2 to 11.3.3

Changelog

Sourced from fs-extra's changelog.

11.3.3 / 2025-12-18

  • Fix copying symlink when destination is a symlink to the same target (#1019, #1060)
Commits

Updates hookified from 1.12.1 to 1.14.0

Release notes

Sourced from hookified's releases.

v1.14.0

What's Changed

Full Changelog: jaredwray/hookified@v1.13.0...v1.14.0

v1.13.0

What's Changed

Full Changelog: jaredwray/hookified@v1.12.2...v1.13.0

v1.12.2

What's Changed

Full Changelog: jaredwray/hookified@v1.12.1...v1.12.2

Commits
  • f3e0d9f version bump to v1.14.0
  • 7bf06df Merge pull request #120 from jaredwray/feat-adding-in-logger-to-be-fully-impl...
  • 4c90457 Update README.md
  • 5df9a2b Update eventified.ts
  • 9bfa4e3 adding in sendLog
  • 8440b3f feat: adding in logger to be fully implemented
  • 259cbb7 feat: adding in logger to be fully implemented
  • 8daa6cf Merge pull request #119 from jaredwray/feat-moving-types-and-interfaces-to-ty...
  • a4f8613 feat: moving types and interfaces to types.ts
  • 053be58 Merge pull request #118 from jaredwray/chore-upgrading-docula-to-0.31.1
  • Additional commits viewable in compare view

Updates immutable from 5.1.3 to 5.1.4

Release notes

Sourced from immutable's releases.

v5.1.4

What's Changed

Documentation

Internal

New Contributors

Full Changelog: immutable-js/immutable-js@v5.1.3...v5.1.4

Changelog

Sourced from immutable's changelog.

5.1.4

Documentation

Internal

Commits
  • 6618019 5.1.4
  • 03559b0 Use trusted publisher for immutable
  • 50573fc Rename CI workflow to Output diff for TS files
  • 6c4d9ef Add token access for npm publishing
  • e03dee2 Merge pull request #2144 from immutable-js/doc-ordered-map
  • 0311529 Typo in OrderedMap
  • fce542f Fix documentation link in CONTRIBUTING.md
  • e908332 Merge pull request #2138 from borracciaBlu/doc-mdx/map-get
  • e182cb1 More precise get type with not setValue
  • 387b83a Doc add Map.get signature update
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for immutable since your current version.


Updates js-yaml from 4.1.0 to 4.1.1

Changelog

Sourced from js-yaml's changelog.

[4.1.1] - 2025-11-12

Security

  • Fix prototype pollution issue in yaml merge (<<) operator.
Commits

Updates keyv from 5.5.3 to 5.5.5

Commits

Updates postcss-selector-parser from 7.1.0 to 7.1.1

Release notes

Sourced from postcss-selector-parser's releases.

v7.1.1

7.1.1

  • perf: replace startsWith with strict equality (#308)
  • fix(types): add walkUniversal declaration (#311)
Changelog

Sourced from postcss-selector-parser's changelog.

7.1.1

  • perf: replace startsWith with strict equality (#308)
  • fix(types): add walkUniversal declaration (#311)
Commits

Updates resolve from 1.22.10 to 1.22.11

Commits
  • f24742c v1.22.11
  • 05e3324 [actions] set proper permissions
  • e33fe81 [meta] Fix broken repository URL in package.json (#334)
  • c0e3469 [Refactor] hoist regex expressions for efficiency (#336)
  • d36d57e [Tests] install npm 5 before npm 6 in node 7 on windows
  • 01518bd [meta] add threat model
  • ef2c005 [meta] gitignore coverage output
  • cddade1 [meta] add IRP
  • c0e5bcf [Deps] update is-core-module
  • 4416d46 [Dev Deps] update @ljharb/eslint-config, array.prototype.map
  • See full diff in compare view

Updates stylelint-config-standard from 39.0.0 to 39.0.1

Release notes

Sourced from stylelint-config-standard's releases.

39.0.1

  • Fixed: layer-name-pattern false positives for dot notation.
Changelog

Sourced from stylelint-config-standard's changelog.

39.0.1

  • Fixed: layer-name-pattern false positives for dot notation.
Commits
  • a2416d3 Release 39.0.1 (#374)
  • 9911899 Fix layer-name-pattern false positives for dot notation (#373)
  • 807ed8d Bump Stylelint (#371)
  • f6aea8b Introduce new release workflow (#370)
  • 5f6cc89 Bump stylelint/.github from 5c1fac886fb5f8f74e29e133f36d242770d03ed3 to 34f1c...
  • 939280e Bump the dev-deps group with 2 updates (#368)
  • 8cad224 Shorten dev dependencies group name for Dependabot (#367)
  • 552ca29 Sync CODEOWNERS (#366)
  • 6c540d2 Bump eslint from 9.34.0 to 9.35.0 in the development-dependencies group (#365)
  • bc321ef Introduce cooldown period for Dependabot updates (#364)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by [GitHub Actions](https://www.npmjs.com/~GitHub Actions), a new releaser for stylelint-config-standard since your current version.


Updates stylelint-scss from 6.12.1 to 6.13.0

Release notes

Sourced from stylelint-scss's releases.

6.13.0

  • Added: at-mixin-argumentless-call-parentheses handle mixin calls with content block arguments (#1185).
  • Added: at-function-pattern, at-mixin-pattern, dollar-variable-pattern, percent-placeholder-pattern add support for arguments in custom messages (#1187).
  • Added: dollar-variable-no-missing-interpolation check for CSS custom properties, add autofix, rule documentation improvements (#1195).
  • Fixed: dollar-variable-colon-space-after prevent TypeError for dynamically created nodes (#1159).
  • Fixed: load-partial-extension add missing link to docs (#1202).
  • Fixed: migrate rules to use autofix callback instead of deprecated context.fix (#1206).
  • Updated: stylelint peer dependency version to ^16.8.2 (required by autofix callback) (#1206).

Full Changelog: stylelint-scss/stylelint-scss@v6.12.1...v6.13.0

Changelog

Sourced from stylelint-scss's changelog.

6.13.0

  • Added: at-mixin-argumentless-call-parentheses handle mixin calls with content block arguments (#1185).
  • Added: at-function-pattern, at-mixin-pattern, dollar-variable-pattern, percent-placeholder-pattern add support for arguments in custom messages (#1187).
  • Added: dollar-variable-no-missing-interpolation check for CSS custom properties, add autofix, rule documentation improvements (#1195).
  • Fixed: dollar-variable-colon-space-after prevent TypeError for dynamically created nodes (#1159).
  • Fixed: load-partial-extension add missing link to docs (#1202).
  • Fixed: migrate rules to use autofix callback instead of deprecated context.fix (#1206).
  • Updated: stylelint peer depende...

    Description has been truncated

…pdates

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

| Package | From | To |
| --- | --- | --- |
| [nodemon](https://github.com/remy/nodemon) | `3.1.10` | `3.1.11` |
| [sass](https://github.com/sass/dart-sass) | `1.93.2` | `1.97.1` |
| [stylelint](https://github.com/stylelint/stylelint) | `16.25.0` | `16.26.1` |
| [@babel/helper-validator-identifier](https://github.com/babel/babel/tree/HEAD/packages/babel-helper-validator-identifier) | `7.27.1` | `7.28.5` |
| [es-abstract](https://github.com/ljharb/es-abstract) | `1.24.0` | `1.24.1` |
| [fs-extra](https://github.com/jprichardson/node-fs-extra) | `11.3.2` | `11.3.3` |
| [immutable](https://github.com/immutable-js/immutable-js) | `5.1.3` | `5.1.4` |
| [js-yaml](https://github.com/nodeca/js-yaml) | `4.1.0` | `4.1.1` |
| [postcss-selector-parser](https://github.com/postcss/postcss-selector-parser) | `7.1.0` | `7.1.1` |
| [resolve](https://github.com/browserify/resolve) | `1.22.10` | `1.22.11` |
| [stylelint-config-standard](https://github.com/stylelint/stylelint-config-standard) | `39.0.0` | `39.0.1` |
| [stylelint-scss](https://github.com/stylelint-scss/stylelint-scss) | `6.12.1` | `6.13.0` |
| [yaml](https://github.com/eemeli/yaml) | `2.8.1` | `2.8.2` |



Updates `nodemon` from 3.1.10 to 3.1.11
- [Release notes](https://github.com/remy/nodemon/releases)
- [Commits](remy/nodemon@v3.1.10...v3.1.11)

Updates `sass` from 1.93.2 to 1.97.1
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](sass/dart-sass@1.93.2...1.97.1)

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

Updates `@babel/helper-validator-identifier` from 7.27.1 to 7.28.5
- [Release notes](https://github.com/babel/babel/releases)
- [Changelog](https://github.com/babel/babel/blob/main/CHANGELOG.md)
- [Commits](https://github.com/babel/babel/commits/v7.28.5/packages/babel-helper-validator-identifier)

Updates `@cacheable/memory` from 2.0.3 to 2.0.6
- [Release notes](https://github.com/jaredwray/cacheable/releases)
- [Commits](https://github.com/jaredwray/cacheable/commits/HEAD/packages/cacheable)

Updates `@cacheable/utils` from 2.0.3 to 2.3.2
- [Release notes](https://github.com/jaredwray/cacheable/releases)
- [Commits](https://github.com/jaredwray/cacheable/commits/HEAD/packages/utils)

Updates `@keyv/bigmap` from 1.0.2 to 1.3.0
- [Release notes](https://github.com/jaredwray/keyv/releases)
- [Commits](https://github.com/jaredwray/keyv/commits)

Updates `cacheable` from 2.0.3 to 2.3.1
- [Release notes](https://github.com/jaredwray/cacheable/releases)
- [Commits](https://github.com/jaredwray/cacheable/commits/HEAD/packages/cacheable)

Updates `es-abstract` from 1.24.0 to 1.24.1
- [Changelog](https://github.com/ljharb/es-abstract/blob/main/CHANGELOG.md)
- [Commits](ljharb/es-abstract@v1.24.0...v1.24.1)

Updates `file-entry-cache` from 10.1.4 to 11.1.1
- [Release notes](https://github.com/jaredwray/cacheable/releases)
- [Commits](https://github.com/jaredwray/cacheable/commits/HEAD/packages/file-entry-cache)

Updates `flat-cache` from 6.1.17 to 6.1.19
- [Release notes](https://github.com/jaredwray/cacheable/releases)
- [Commits](https://github.com/jaredwray/cacheable/commits/HEAD/packages/flat-cache)

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

Updates `hookified` from 1.12.1 to 1.14.0
- [Release notes](https://github.com/jaredwray/hookified/releases)
- [Commits](jaredwray/hookified@v1.12.1...v1.14.0)

Updates `immutable` from 5.1.3 to 5.1.4
- [Release notes](https://github.com/immutable-js/immutable-js/releases)
- [Changelog](https://github.com/immutable-js/immutable-js/blob/main/CHANGELOG.md)
- [Commits](immutable-js/immutable-js@v5.1.3...v5.1.4)

Updates `js-yaml` from 4.1.0 to 4.1.1
- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)
- [Commits](nodeca/js-yaml@4.1.0...4.1.1)

Updates `keyv` from 5.5.3 to 5.5.5
- [Release notes](https://github.com/jaredwray/keyv/releases)
- [Commits](https://github.com/jaredwray/keyv/commits)

Updates `postcss-selector-parser` from 7.1.0 to 7.1.1
- [Release notes](https://github.com/postcss/postcss-selector-parser/releases)
- [Changelog](https://github.com/postcss/postcss-selector-parser/blob/master/CHANGELOG.md)
- [Commits](postcss/postcss-selector-parser@v7.1.0...v7.1.1)

Updates `resolve` from 1.22.10 to 1.22.11
- [Commits](browserify/resolve@v1.22.10...v1.22.11)

Updates `stylelint-config-standard` from 39.0.0 to 39.0.1
- [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@39.0.0...39.0.1)

Updates `stylelint-scss` from 6.12.1 to 6.13.0
- [Release notes](https://github.com/stylelint-scss/stylelint-scss/releases)
- [Changelog](https://github.com/stylelint-scss/stylelint-scss/blob/master/CHANGELOG.md)
- [Commits](stylelint-scss/stylelint-scss@v6.12.1...v6.13.0)

Updates `yaml` from 2.8.1 to 2.8.2
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v2.8.1...v2.8.2)

---
updated-dependencies:
- dependency-name: nodemon
  dependency-version: 3.1.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: sass
  dependency-version: 1.97.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: stylelint
  dependency-version: 16.26.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@babel/helper-validator-identifier"
  dependency-version: 7.28.5
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@cacheable/memory"
  dependency-version: 2.0.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: "@cacheable/utils"
  dependency-version: 2.3.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: "@keyv/bigmap"
  dependency-version: 1.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: cacheable
  dependency-version: 2.3.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: es-abstract
  dependency-version: 1.24.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: file-entry-cache
  dependency-version: 11.1.1
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: dependencies
- dependency-name: flat-cache
  dependency-version: 6.1.19
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: fs-extra
  dependency-version: 11.3.3
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: hookified
  dependency-version: 1.14.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: immutable
  dependency-version: 5.1.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: js-yaml
  dependency-version: 4.1.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: keyv
  dependency-version: 5.5.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: postcss-selector-parser
  dependency-version: 7.1.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: resolve
  dependency-version: 1.22.11
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: stylelint-config-standard
  dependency-version: 39.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
- dependency-name: stylelint-scss
  dependency-version: 6.13.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: dependencies
- dependency-name: yaml
  dependency-version: 2.8.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot @github
Copy link
Copy Markdown
Contributor Author

dependabot bot commented on behalf of github Dec 22, 2025

Labels

The following labels could not be found: automated, dependencies. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@swingerman swingerman merged commit e39ece8 into main Dec 26, 2025
2 checks passed
@swingerman swingerman deleted the dependabot/npm_and_yarn/dependencies-20167c9aec branch December 26, 2025 08:24
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant