Skip to content

Bump the npm-patching group across 1 directory with 87 updates#4072

Merged
lewisgoddard merged 2 commits into
masterfrom
dependabot/npm_and_yarn/npm-patching-15a510600a
Jun 22, 2026
Merged

Bump the npm-patching group across 1 directory with 87 updates#4072
lewisgoddard merged 2 commits into
masterfrom
dependabot/npm_and_yarn/npm-patching-15a510600a

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 22, 2026

Copy link
Copy Markdown
Contributor

Bumps the npm-patching group with 37 updates in the / directory:

Package From To
cssnano 8.0.1 8.0.2
postcss-preset-env 11.3.0 11.3.1
webpack 5.107.1 5.107.2
eslint-plugin-import-x 4.16.2 4.17.0
eslint-plugin-n 18.0.1 18.1.0
@eslint/plugin-kit 0.7.1 0.7.2
@napi-rs/wasm-runtime 1.1.4 1.1.5
@types/estree 1.0.8 1.0.9
@typescript-eslint/types 8.59.4 8.62.0
acorn 8.16.0 8.17.0
bare-events 2.8.3 2.9.1
baseline-browser-mapping 2.10.20 2.10.38
browserslist 4.28.2 4.28.4
chrome-trace-event 1.0.3 1.0.4
cosmiconfig 9.0.1 9.0.2
end-of-stream 1.4.4 1.4.5
enhanced-resolve 5.22.0 5.24.0
fastq 1.13.0 1.20.1
hasown 2.0.3 2.0.4
identifier-regex 1.0.0 1.0.1
is-core-module 2.16.1 2.16.2
is-identifier 1.0.0 1.0.1
optionator 0.9.3 0.9.4
pump 3.0.0 3.0.4
reserved-identifiers 1.0.0 1.2.0
resolve 1.22.11 1.22.12
reusify 1.0.4 1.1.0
sax 1.5.0 1.6.0
streamx 2.25.0 2.28.0
@csstools/css-syntax-patches-for-csstree 1.1.4 1.1.5
super-regex 1.0.0 1.1.0
supports-hyperlinks 4.4.0 4.5.0
terser-webpack-plugin 5.6.0 5.6.1
to-buffer 1.1.1 1.2.2
touch 3.1.0 3.1.1
watchpack 2.5.1 2.5.2
yaml 2.8.3 2.9.0

Updates cssnano from 8.0.1 to 8.0.2

Release notes

Sourced from cssnano's releases.

v8.0.2

What's Changed

Full Changelog: https://github.com/cssnano/cssnano/compare/cssnano@8.0.1...cssnano@8.0.2

Commits
  • 185e1c7 Publish cssnano 8.0.2
  • 2ce8c2d chore: update the postcs peer dependency
  • 99bd9c1 docs: update website dependencies
  • 2ca8d4a chore: update development deps
  • b245a0b fix: update caniuse-api
  • 3bf3f4d chore: update postcss-selector-parser
  • 7343c87 fix: preserve apostrophes in svg data uris (#1819)
  • 964b9db chore(util): add benchmark + cpuprofile tooling (#1812)
  • 54a8db2 Include postcss-discard-overridden types in package
  • e0e39ae perf(postcss-merge-longhand): skip processors with no relevant decls
  • Additional commits viewable in compare view

Updates postcss-preset-env from 11.3.0 to 11.3.1

Changelog

Sourced from postcss-preset-env's changelog.

11.3.1

June 14, 2026

Commits

Updates webpack from 5.107.1 to 5.107.2

Release notes

Sourced from webpack's releases.

v5.107.2

Patch Changes

  • Reduce per-file overhead in ContextModuleFactory.resolveDependencies by batching alternativeRequests hook calls. Previously the hook was invoked once per file in the context (with a single-item array), paying per-call overhead (closure allocation, resolverFactory.get, intermediate arrays in RequireContextPlugin) for every file. The hook is now invoked once per directory with all matched files in one batch — RequireContextPlugin's tap already iterates the items array, so the output is unchanged. Steady-state rebuild on a 4000-file require.context drops a further ~15 ms (after the watch-mode purge fix in the same release). (by @​alexander-akait in #21020)

  • Include each external info's runtimeCondition in ConcatenatedModule#updateHash so changes to a concatenated external's runtime condition invalidate persistent caches instead of slipping through with the module id alone. (by @​alexander-akait in #21023)

  • Fix HTML [contenthash] for referenced asset and inline-style URL changes. (by @​alexander-akait in #21018)

  • Resolve chunk-hash placeholders in chunk URLs embedded into extracted HTML. (by @​alexander-akait in #21018)

  • Remove unnecessary __webpack_require__ runtime helpers in ESM library output with multi-module chunks. (by @​xiaoxiaojx in #21032)

  • Rewrite NormalModule#getSideEffectsConnectionState walk as an allocation-light iterative loop instead of a generator trampoline, restoring rebuild performance lost in #20993 while keeping deep import chains stack-safe. (by @​alexander-akait in #21014)

  • Fix runtime ReferenceError on the first activation of a lazy-compiled module when output.library.type produces a closure-wrapped bundle (umd, umd2, amd, amd-require, system). (by @​alexander-akait in #21013)

    External modules of these types reference closure-bound identifiers like __WEBPACK_EXTERNAL_MODULE_react__, supplied by the library wrapper that is generated once per chunk. When lazyCompilation activates an entry or import for the first time, any external dependency the lazily-built module pulls in arrives in a hot-update chunk that lives outside the original wrapper closure, so its factory body cannot resolve the closure identifier and only a manual page refresh recovers.

    The inactive LazyCompilationProxyModule now declares statically-enumerable externals (string and object forms of externals) as its own dependencies, so the initial entry chunk's library wrapper already exposes their closure identifiers. When activation later pulls in those externals through the lazily-compiled module, they resolve to the already-installed factories instead of throwing. Function and RegExp externals are not pre-populated because their effective request set isn't knowable up front.

  • Fill in missing entryOptions when an async block joins an existing entrypoint. (by @​alexander-akait in #21026)

  • Release per-child codeGenerationResults in MultiCompiler and at Compiler.close to reduce memory retention. (by @​alexander-akait in #21015)

  • Reduce peak memory of SourceMapDevToolPlugin on large builds (closes #20961). (by @​alexander-akait in #20963)

  • Fix slow require.context() / dynamic import() rebuilds in watch mode (#13636). When a file inside a watched context directory changed, NodeWatchFileSystem would call inputFileSystem.purge(contextDir). The enhanced-resolve purge implementation matches cache keys with key.startsWith(contextDir), so the stat cache of every file under the directory was discarded on every rebuild — ContextModuleFactory.resolveDependencies then re-stat-ed the whole tree on each rebuild. Single-file rebuilds on a 4000-file context now reuse the warm stat cache, dropping median rebuild from ~1260 ms to ~650 ms in a local reproduction (≈49%). For directory items that are explicitly watched contexts, purge is now called with { exact: true } (added in enhanced-resolve@5.22.0) so only the directory's own entry is invalidated; file-level changes in the same aggregated event continue to purge file stats and the parent readdir as before. (by @​alexander-akait in #21020)

Changelog

Sourced from webpack's changelog.

5.107.2

Patch Changes

  • Reduce per-file overhead in ContextModuleFactory.resolveDependencies by batching alternativeRequests hook calls. Previously the hook was invoked once per file in the context (with a single-item array), paying per-call overhead (closure allocation, resolverFactory.get, intermediate arrays in RequireContextPlugin) for every file. The hook is now invoked once per directory with all matched files in one batch — RequireContextPlugin's tap already iterates the items array, so the output is unchanged. Steady-state rebuild on a 4000-file require.context drops a further ~15 ms (after the watch-mode purge fix in the same release). (by @​alexander-akait in #21020)

  • Include each external info's runtimeCondition in ConcatenatedModule#updateHash so changes to a concatenated external's runtime condition invalidate persistent caches instead of slipping through with the module id alone. (by @​alexander-akait in #21023)

  • Fix HTML [contenthash] for referenced asset and inline-style URL changes. (by @​alexander-akait in #21018)

  • Resolve chunk-hash placeholders in chunk URLs embedded into extracted HTML. (by @​alexander-akait in #21018)

  • Remove unnecessary __webpack_require__ runtime helpers in ESM library output with multi-module chunks. (by @​xiaoxiaojx in #21032)

  • Rewrite NormalModule#getSideEffectsConnectionState walk as an allocation-light iterative loop instead of a generator trampoline, restoring rebuild performance lost in #20993 while keeping deep import chains stack-safe. (by @​alexander-akait in #21014)

  • Fix runtime ReferenceError on the first activation of a lazy-compiled module when output.library.type produces a closure-wrapped bundle (umd, umd2, amd, amd-require, system). (by @​alexander-akait in #21013)

    External modules of these types reference closure-bound identifiers like __WEBPACK_EXTERNAL_MODULE_react__, supplied by the library wrapper that is generated once per chunk. When lazyCompilation activates an entry or import for the first time, any external dependency the lazily-built module pulls in arrives in a hot-update chunk that lives outside the original wrapper closure, so its factory body cannot resolve the closure identifier and only a manual page refresh recovers.

    The inactive LazyCompilationProxyModule now declares statically-enumerable externals (string and object forms of externals) as its own dependencies, so the initial entry chunk's library wrapper already exposes their closure identifiers. When activation later pulls in those externals through the lazily-compiled module, they resolve to the already-installed factories instead of throwing. Function and RegExp externals are not pre-populated because their effective request set isn't knowable up front.

  • Fill in missing entryOptions when an async block joins an existing entrypoint. (by @​alexander-akait in #21026)

  • Release per-child codeGenerationResults in MultiCompiler and at Compiler.close to reduce memory retention. (by @​alexander-akait in #21015)

  • Reduce peak memory of SourceMapDevToolPlugin on large builds (closes #20961). (by @​alexander-akait in #20963)

  • Fix slow require.context() / dynamic import() rebuilds in watch mode (#13636). When a file inside a watched context directory changed, NodeWatchFileSystem would call inputFileSystem.purge(contextDir). The enhanced-resolve purge implementation matches cache keys with key.startsWith(contextDir), so the stat cache of every file under the directory was discarded on every rebuild — ContextModuleFactory.resolveDependencies then re-stat-ed the whole tree on each rebuild. Single-file rebuilds on a 4000-file context now reuse the warm stat cache, dropping median rebuild from ~1260 ms to ~650 ms in a local reproduction (≈49%). For directory items that are explicitly watched contexts, purge is now called with { exact: true } (added in enhanced-resolve@5.22.0) so only the directory's own entry is invalidated; file-level changes in the same aggregated event continue to purge file stats and the parent readdir as before. (by @​alexander-akait in #21020)

Commits
  • cfb24a4 chore(release): new release (#21019)
  • c7d8a3a fix: release per-child Compilation heap pressure in MultiCompiler (#21015)
  • d6cdebe fix: regression in types for ProgressPlugin (#21036)
  • c073890 fix: gap-fill entryOptions when an async block reuses an existing entrypoint ...
  • 78158f0 docs: streamline AGENTS.md to reduce AI hallucination (#21033)
  • c61c649 test: fail on missing per-kind snapshot instead of auto-writing it (#21027)
  • a514897 docs: update examples (#21031)
  • cc4035b fix: remove unnecessary webpack_require in ESM library output (#21032)
  • 12cb825 docs(buildChunkGraph): explain why blocksWithNestedBlocks gates the skip (#21...
  • 75f60f6 fix(ConcatenatedModule): include runtimeCondition of external infos in update...
  • Additional commits viewable in compare view

Updates eslint-plugin-import-x from 4.16.2 to 4.17.0

Release notes

Sourced from eslint-plugin-import-x's releases.

v4.17.0

Minor Changes

  • #474 4b2c0c5 Thanks @​regseb! - Support RegExp in the import-x/ignore setting and the ignore option of the no-unresolved rule.

Patch Changes

  • #494 1c84235 Thanks @​morgan-coded! - Fixed no-unresolved crashing when case-sensitive path checks encounter EACCES or EPERM on an ancestor directory.

  • #481 3e13121 Thanks @​B4nan! - fix: memoize legacyNodeResolve resolver to avoid native memory leak

  • #484 9a07009 Thanks @​sairus2k! - Make the extensions rule check Node.js subpath imports (specifiers starting with #, e.g. #utils/helper). Previously parsePath treated a leading # as a URL hash fragment, so the rule skipped extension validation for these imports.

    Note: single-segment subpath imports without a slash (e.g. #dep) are still skipped by the existing external-root-module classification; fixing that is deferred to avoid expanding scope.

  • #468 240ed58 Thanks @​silverwind! - Make extensions handle .d.ts correctly

  • #479 e3cc7e4 Thanks @​mrginglymus! - fix: strip querystrings and hash fragments when checking for file existence

  • #476 fce29b1 Thanks @​nbouvrette! - fix(deps): replace @​package-json/types with an inline minimal type

Changelog

Sourced from eslint-plugin-import-x's changelog.

4.17.0

Minor Changes

  • #474 4b2c0c5 Thanks @​regseb! - Support RegExp in the import-x/ignore setting and the ignore option of the no-unresolved rule.

Patch Changes

  • #494 1c84235 Thanks @​morgan-coded! - Fixed no-unresolved crashing when case-sensitive path checks encounter EACCES or EPERM on an ancestor directory.

  • #481 3e13121 Thanks @​B4nan! - fix: memoize legacyNodeResolve resolver to avoid native memory leak

  • #484 9a07009 Thanks @​sairus2k! - Make the extensions rule check Node.js subpath imports (specifiers starting with #, e.g. #utils/helper). Previously parsePath treated a leading # as a URL hash fragment, so the rule skipped extension validation for these imports.

    Note: single-segment subpath imports without a slash (e.g. #dep) are still skipped by the existing external-root-module classification; fixing that is deferred to avoid expanding scope.

  • #468 240ed58 Thanks @​silverwind! - Make extensions handle .d.ts correctly

  • #479 e3cc7e4 Thanks @​mrginglymus! - fix: strip querystrings and hash fragments when checking for file existence

  • #476 fce29b1 Thanks @​nbouvrette! - fix(deps): replace @​package-json/types with an inline minimal type

Commits
  • 7578513 chore: release eslint-plugin-import-x (#472)
  • e3cc7e4 fix: strip querystrings and hash fragments when checking for file existence (...
  • 9a07009 fix: make extensions rule check Node.js subpath imports (#484)
  • 3e13121 fix: memoize legacyNodeResolve resolver to avoid native memory leak (#481)
  • fce29b1 fix(deps): replace @​package-json/types with an inline minimal type (#476)
  • 1c84235 fix: handle access errors during case checks (#494)
  • 96222bf chore: drop unused tmp (#487)
  • 4b2c0c5 feat: support RegExp in ignore (#474)
  • 240ed58 fix: make extensions rule handle .d.ts correctly (#468)
  • See full diff in compare view

Updates eslint-plugin-n from 18.0.1 to 18.1.0

Release notes

Sourced from eslint-plugin-n's releases.

v18.1.0

18.1.0 (2026-06-08)

🌟 Features

  • Allow workspace root dependencies for no-extraneous-import (#536) (fd4f84e)
  • support devEngines.runtime from package.json (#530) (9ef3c32)

🩹 Fixes

  • Allow leading forwardslash in package.json "files" field (#534) (#535) (5fde036)
  • no-extraneous-import for type-only @​types dependencies (#533) (63a90ef)
  • prefer-promises/fs: add missing fs.promises APIs (cp, glob, lutimes, opendir, rm, statfs) (#532) (75fbe34)

📚 Documentation

  • fix usage in README.md (c1b1b84)
  • Update online playground link in README (058916a)
Changelog

Sourced from eslint-plugin-n's changelog.

18.1.0 (2026-06-08)

🌟 Features

  • Allow workspace root dependencies for no-extraneous-import (#536) (fd4f84e)
  • support devEngines.runtime from package.json (#530) (9ef3c32)

🩹 Fixes

  • Allow leading forwardslash in package.json "files" field (#534) (#535) (5fde036)
  • no-extraneous-import for type-only @​types dependencies (#533) (63a90ef)
  • prefer-promises/fs: add missing fs.promises APIs (cp, glob, lutimes, opendir, rm, statfs) (#532) (75fbe34)

📚 Documentation

  • fix usage in README.md (c1b1b84)
  • Update online playground link in README (058916a)
Commits
  • fc70bdf chore(master): release 18.1.0 (#528)
  • fd4f84e feat: Allow workspace root dependencies for no-extraneous-import (#536)
  • 5fde036 fix: Allow leading forwardslash in package.json "files" field (#534) (#535)
  • 63a90ef fix: no-extraneous-import for type-only @​types dependencies (#533)
  • 75fbe34 fix(prefer-promises/fs): add missing fs.promises APIs (cp, glob, lutimes, ope...
  • 058916a docs: Update online playground link in README
  • 9ef3c32 feat: support devEngines.runtime from package.json (#530)
  • c1b1b84 docs: fix usage in README.md
  • See full diff in compare view

Updates @csstools/postcss-alpha-function from 2.0.5 to 2.0.6

Changelog

Sourced from @​csstools/postcss-alpha-function's changelog.

2.0.6

June 14, 2026

Commits

Updates @csstools/css-color-parser from 4.1.1 to 4.1.8

Changelog

Sourced from @​csstools/css-color-parser's changelog.

4.1.8

June 19, 2026

  • Add color-mix syntax flag to mix notations with only a single value (e.g. color-mix(in oklch, red))

4.1.7

June 14, 2026

  • Fix normalization of hue to [0, 360] range when hue is not finite

4.1.6

June 14, 2026

  • Fix normalization of hue to [0, 360] range when hue is a negative number

4.1.5

June 14, 2026

  • Fix handling of hue in interpolation when both parts have a missing hue component

4.1.4

June 13, 2026

  • Fix none alpha in alpha()

4.1.3

June 10, 2026

  • Assign rgb color notation to contrast-color() (instead of srgb).

4.1.2

June 10, 2026

  • Remove special handling of all zero percentages in color-mix()
Commits

Updates @csstools/postcss-color-function from 5.0.4 to 5.0.5

Changelog

Sourced from @​csstools/postcss-color-function's changelog.

5.0.5

June 14, 2026

Commits

Updates @csstools/postcss-color-function-display-p3-linear from 2.0.4 to 2.0.5

Changelog

Sourced from @​csstools/postcss-color-function-display-p3-linear's changelog.

2.0.5

June 14, 2026

Commits

Updates @csstools/postcss-color-mix-function from 4.0.4 to 4.0.5

Changelog

Sourced from @​csstools/postcss-color-mix-function's changelog.

4.0.5

June 14, 2026

Commits

Updates @csstools/postcss-color-mix-variadic-function-arguments from 2.0.4 to 2.0.5

Changelog

Sourced from @​csstools/postcss-color-mix-variadic-function-arguments's changelog.

2.0.5

June 14, 2026

Commits

Updates @csstools/postcss-contrast-color-function from 3.0.4 to 3.0.5

Changelog

Sourced from @​csstools/postcss-contrast-color-function's changelog.

3.0.5

June 14, 2026

Commits

Updates @csstools/postcss-gamut-mapping from 3.0.4 to 3.0.5

Changelog

Sourced from @​csstools/postcss-gamut-mapping's changelog.

3.0.5

June 14, 2026

Commits

Updates @csstools/postcss-gradients-interpolation-method from 6.0.4 to 6.0.5

Changelog

Sourced from @​csstools/postcss-gradients-interpolation-method's changelog.

6.0.5

June 14, 2026

Commits

Updates @csstools/postcss-hwb-function from 5.0.4 to 5.0.5

Changelog

Sourced from @​csstools/postcss-hwb-function's changelog.

5.0.5

June 14, 2026

Commits

Updates @csstools/postcss-oklab-function from 5.0.4 to 5.0.5

Changelog

Sourced from @​csstools/postcss-oklab-function's changelog.

5.0.5

June 14, 2026

Commits

Updates @csstools/postcss-relative-color-syntax from 4.0.4 to 4.0.5

Changelog

Sourced from @​csstools/postcss-relative-color-syntax's changelog.

4.0.5

June 14, 2026

Commits

Updates @eslint/plugin-kit from 0.7.1 to 0.7.2

Release notes

Sourced from @​eslint/plugin-kit's releases.

plugin-kit: v0.7.2

0.7.2 (2026-05-23)

Bug Fixes

  • add missing .d.cts files while building plugin-kit (#445) (49e101b)
Changelog

Sourced from @​eslint/plugin-kit's changelog.

0.7.2 (2026-05-23)

Bug Fixes

  • add missing .d.cts files while building plugin-kit (#445) (49e101b)
Commits

Updates @napi-rs/wasm-runtime from 1.1.4 to 1.1.5

Changelog

Sourced from @​napi-rs/wasm-runtime's changelog.

1.1.5 (2026-06-10)

Bug Fixes

  • wasm-runtime: preserve Buffer return values in fs-proxy (#3250) (c70f205)
Commits

Updates @types/estree from 1.0.8 to 1.0.9

Commits

Updates @typescript-eslint/types from 8.59.4 to 8.62.0

Release notes

Sourced from @​typescript-eslint/types's releases.

v8.62.0

8.62.0 (2026-06-22)

🚀 Features

  • remove redundant package.json "files" (#12444)

🩹 Fixes

  • add "files" to rule-schema-to-typescript-types (#12441)

❤️ Thank You

See GitHub Releases for more information.

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

v8.61.1

8.61.1 (2026-06-15)

🩹 Fixes

  • eslint-plugin: [consistent-indexed-object-style] do not remove comments when fixing (#12396, #10577)
  • eslint-plugin: [no-unnecessary-type-assertion] avoid false positive for template literal expressions (#12281)
  • eslint-plugin: [no-unnecessary-type-assertion] wrap object literal in parens when removing TSTypeAssertion in arrow body (#12394, #12393)
  • eslint-plugin: [no-unnecessary-boolean-literal-compare] fix precedence bug in autofix (#12413)
  • eslint-plugin: [no-unnecessary-template-expression] respect ECMAScript line terminators (#12388)

❤️ Thank You

See GitHub Releases for more information.

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

v8.61.0

8.61.0 (2026-06-08)

🚀 Features

  • ast-spec: change type of UnaryExpression.prefix to always true (#12372)
  • ast-spec: tighten types of ArrowFunction, YieldExpression, TSTypePredicate (#12373)

... (truncated)

Changelog

Sourced from @​typescript-eslint/types's changelog.

8.62.0 (2026-06-22)

🚀 Features

  • remove redundant package.json "files" (#12444)

❤️ Thank You

See GitHub Releases for more information.

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

8.61.1 (2026-06-15)

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

See GitHub Releases for more information.

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

8.61.0 (2026-06-08)

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

See GitHub Releases for more information.

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

8.60.1 (2026-06-01)

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

See GitHub Releases for more information.

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

8.60.0 (2026-05-25)

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

See GitHub Releases for more information.

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

Commits
  • 54e2857 chore(release): publish 8.62.0
  • 81e4c26 feat: remove redundant package.json "files" (#12444)
  • aaad718 chore(release): publish 8.6...

    Description has been truncated

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Jun 22, 2026
Bumps the npm-patching group with 37 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [cssnano](https://github.com/cssnano/cssnano) | `8.0.1` | `8.0.2` |
| [postcss-preset-env](https://github.com/csstools/postcss-plugins/tree/HEAD/plugin-packs/postcss-preset-env) | `11.3.0` | `11.3.1` |
| [webpack](https://github.com/webpack/webpack) | `5.107.1` | `5.107.2` |
| [eslint-plugin-import-x](https://github.com/un-ts/eslint-plugin-import-x) | `4.16.2` | `4.17.0` |
| [eslint-plugin-n](https://github.com/eslint-community/eslint-plugin-n) | `18.0.1` | `18.1.0` |
| [@eslint/plugin-kit](https://github.com/eslint/rewrite/tree/HEAD/packages/plugin-kit) | `0.7.1` | `0.7.2` |
| [@napi-rs/wasm-runtime](https://github.com/napi-rs/napi-rs/tree/HEAD/wasm-runtime) | `1.1.4` | `1.1.5` |
| [@types/estree](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/estree) | `1.0.8` | `1.0.9` |
| [@typescript-eslint/types](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/types) | `8.59.4` | `8.62.0` |
| [acorn](https://github.com/acornjs/acorn) | `8.16.0` | `8.17.0` |
| [bare-events](https://github.com/holepunchto/bare-events) | `2.8.3` | `2.9.1` |
| [baseline-browser-mapping](https://github.com/web-platform-dx/baseline-browser-mapping) | `2.10.20` | `2.10.38` |
| [browserslist](https://github.com/browserslist/browserslist) | `4.28.2` | `4.28.4` |
| [chrome-trace-event](https://github.com/samccone/chrome-trace-event) | `1.0.3` | `1.0.4` |
| [cosmiconfig](https://github.com/cosmiconfig/cosmiconfig) | `9.0.1` | `9.0.2` |
| [end-of-stream](https://github.com/mafintosh/end-of-stream) | `1.4.4` | `1.4.5` |
| [enhanced-resolve](https://github.com/webpack/enhanced-resolve) | `5.22.0` | `5.24.0` |
| [fastq](https://github.com/mcollina/fastq) | `1.13.0` | `1.20.1` |
| [hasown](https://github.com/inspect-js/hasOwn) | `2.0.3` | `2.0.4` |
| [identifier-regex](https://github.com/sindresorhus/identifier-regex) | `1.0.0` | `1.0.1` |
| [is-core-module](https://github.com/inspect-js/is-core-module) | `2.16.1` | `2.16.2` |
| [is-identifier](https://github.com/sindresorhus/is-identifier) | `1.0.0` | `1.0.1` |
| [optionator](https://github.com/gkz/optionator) | `0.9.3` | `0.9.4` |
| [pump](https://github.com/mafintosh/pump) | `3.0.0` | `3.0.4` |
| [reserved-identifiers](https://github.com/sindresorhus/reserved-identifiers) | `1.0.0` | `1.2.0` |
| [resolve](https://github.com/browserify/resolve) | `1.22.11` | `1.22.12` |
| [reusify](https://github.com/mcollina/reusify) | `1.0.4` | `1.1.0` |
| [sax](https://github.com/isaacs/sax-js) | `1.5.0` | `1.6.0` |
| [streamx](https://github.com/mafintosh/streamx) | `2.25.0` | `2.28.0` |
| [@csstools/css-syntax-patches-for-csstree](https://github.com/csstools/postcss-plugins/tree/HEAD/packages/css-syntax-patches-for-csstree) | `1.1.4` | `1.1.5` |
| [super-regex](https://github.com/sindresorhus/super-regex) | `1.0.0` | `1.1.0` |
| [supports-hyperlinks](https://github.com/chalk/supports-hyperlinks) | `4.4.0` | `4.5.0` |
| [terser-webpack-plugin](https://github.com/webpack/minimizer-webpack-plugin) | `5.6.0` | `5.6.1` |
| [to-buffer](https://github.com/browserify/to-buffer) | `1.1.1` | `1.2.2` |
| [touch](https://github.com/isaacs/node-touch) | `3.1.0` | `3.1.1` |
| [watchpack](https://github.com/webpack/watchpack) | `2.5.1` | `2.5.2` |
| [yaml](https://github.com/eemeli/yaml) | `2.8.3` | `2.9.0` |



Updates `cssnano` from 8.0.1 to 8.0.2
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/cssnano@8.0.1...cssnano@8.0.2)

Updates `postcss-preset-env` from 11.3.0 to 11.3.1
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugin-packs/postcss-preset-env/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugin-packs/postcss-preset-env)

Updates `webpack` from 5.107.1 to 5.107.2
- [Release notes](https://github.com/webpack/webpack/releases)
- [Changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack@v5.107.1...v5.107.2)

Updates `eslint-plugin-import-x` from 4.16.2 to 4.17.0
- [Release notes](https://github.com/un-ts/eslint-plugin-import-x/releases)
- [Changelog](https://github.com/un-ts/eslint-plugin-import-x/blob/master/CHANGELOG.md)
- [Commits](un-ts/eslint-plugin-import-x@v4.16.2...v4.17.0)

Updates `eslint-plugin-n` from 18.0.1 to 18.1.0
- [Release notes](https://github.com/eslint-community/eslint-plugin-n/releases)
- [Changelog](https://github.com/eslint-community/eslint-plugin-n/blob/master/CHANGELOG.md)
- [Commits](eslint-community/eslint-plugin-n@v18.0.1...v18.1.0)

Updates `@csstools/postcss-alpha-function` from 2.0.5 to 2.0.6
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-alpha-function/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-alpha-function)

Updates `@csstools/css-color-parser` from 4.1.1 to 4.1.8
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/packages/css-color-parser/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/packages/css-color-parser)

Updates `@csstools/postcss-color-function` from 5.0.4 to 5.0.5
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-color-function/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-color-function)

Updates `@csstools/postcss-color-function-display-p3-linear` from 2.0.4 to 2.0.5
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-color-function-display-p3-linear/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-color-function-display-p3-linear)

Updates `@csstools/postcss-color-mix-function` from 4.0.4 to 4.0.5
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-color-mix-function/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-color-mix-function)

Updates `@csstools/postcss-color-mix-variadic-function-arguments` from 2.0.4 to 2.0.5
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-color-mix-variadic-function-arguments/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-color-mix-variadic-function-arguments)

Updates `@csstools/postcss-contrast-color-function` from 3.0.4 to 3.0.5
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-contrast-color-function/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-contrast-color-function)

Updates `@csstools/postcss-gamut-mapping` from 3.0.4 to 3.0.5
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-gamut-mapping/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-gamut-mapping)

Updates `@csstools/postcss-gradients-interpolation-method` from 6.0.4 to 6.0.5
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-gradients-interpolation-method/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-gradients-interpolation-method)

Updates `@csstools/postcss-hwb-function` from 5.0.4 to 5.0.5
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-hwb-function/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-hwb-function)

Updates `@csstools/postcss-oklab-function` from 5.0.4 to 5.0.5
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-oklab-function/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-oklab-function)

Updates `@csstools/postcss-relative-color-syntax` from 4.0.4 to 4.0.5
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-relative-color-syntax/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-relative-color-syntax)

Updates `@eslint/plugin-kit` from 0.7.1 to 0.7.2
- [Release notes](https://github.com/eslint/rewrite/releases)
- [Changelog](https://github.com/eslint/rewrite/blob/main/packages/plugin-kit/CHANGELOG.md)
- [Commits](https://github.com/eslint/rewrite/commits/plugin-kit-v0.7.2/packages/plugin-kit)

Updates `@napi-rs/wasm-runtime` from 1.1.4 to 1.1.5
- [Release notes](https://github.com/napi-rs/napi-rs/releases)
- [Changelog](https://github.com/napi-rs/napi-rs/blob/main/wasm-runtime/CHANGELOG.md)
- [Commits](https://github.com/napi-rs/napi-rs/commits/@napi-rs/wasm-runtime@1.1.5/wasm-runtime)

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

Updates `@typescript-eslint/types` from 8.59.4 to 8.62.0
- [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases)
- [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/main/packages/types/CHANGELOG.md)
- [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v8.62.0/packages/types)

Updates `acorn` from 8.16.0 to 8.17.0
- [Commits](acornjs/acorn@8.16.0...8.17.0)

Updates `bare-events` from 2.8.3 to 2.9.1
- [Release notes](https://github.com/holepunchto/bare-events/releases)
- [Commits](holepunchto/bare-events@v2.8.3...v2.9.1)

Updates `baseline-browser-mapping` from 2.10.20 to 2.10.38
- [Release notes](https://github.com/web-platform-dx/baseline-browser-mapping/releases)
- [Commits](web-platform-dx/baseline-browser-mapping@v2.10.20...v2.10.38)

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

Updates `caniuse-api` from 3.0.0 to 4.0.0
- [Release notes](https://github.com/MoOx/caniuse-api/releases)
- [Changelog](https://github.com/MoOx/caniuse-api/blob/main/CHANGELOG.md)
- [Commits](MoOx/caniuse-api@3.0.0...4.0.0)

Updates `caniuse-lite` from 1.0.30001788 to 1.0.30001799
- [Commits](browserslist/caniuse-lite@1.0.30001788...1.0.30001799)

Updates `chrome-trace-event` from 1.0.3 to 1.0.4
- [Changelog](https://github.com/samccone/chrome-trace-event/blob/master/CHANGES.md)
- [Commits](https://github.com/samccone/chrome-trace-event/commits)

Updates `cosmiconfig` from 9.0.1 to 9.0.2
- [Release notes](https://github.com/cosmiconfig/cosmiconfig/releases)
- [Changelog](https://github.com/cosmiconfig/cosmiconfig/blob/main/CHANGELOG.md)
- [Commits](https://github.com/cosmiconfig/cosmiconfig/commits)

Updates `cssnano-preset-default` from 8.0.1 to 8.0.2
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/cssnano-preset-default@8.0.1...cssnano-preset-default@8.0.2)

Updates `cssnano-utils` from 6.0.0 to 6.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/cssnano-utils@6.0.0...cssnano-utils@6.0.1)

Updates `electron-to-chromium` from 1.5.340 to 1.5.376
- [Changelog](https://github.com/Kilian/electron-to-chromium/blob/main/CHANGELOG.md)
- [Commits](Kilian/electron-to-chromium@v1.5.340...v1.5.376)

Updates `end-of-stream` from 1.4.4 to 1.4.5
- [Commits](mafintosh/end-of-stream@v1.4.4...v1.4.5)

Updates `enhanced-resolve` from 5.22.0 to 5.24.0
- [Release notes](https://github.com/webpack/enhanced-resolve/releases)
- [Changelog](https://github.com/webpack/enhanced-resolve/blob/main/CHANGELOG.md)
- [Commits](webpack/enhanced-resolve@v5.22.0...v5.24.0)

Updates `fastq` from 1.13.0 to 1.20.1
- [Release notes](https://github.com/mcollina/fastq/releases)
- [Commits](mcollina/fastq@v1.13.0...v1.20.1)

Updates `hasown` from 2.0.3 to 2.0.4
- [Changelog](https://github.com/inspect-js/hasOwn/blob/main/CHANGELOG.md)
- [Commits](inspect-js/hasOwn@v2.0.3...v2.0.4)

Updates `identifier-regex` from 1.0.0 to 1.0.1
- [Release notes](https://github.com/sindresorhus/identifier-regex/releases)
- [Commits](sindresorhus/identifier-regex@v1.0.0...v1.0.1)

Updates `is-core-module` from 2.16.1 to 2.16.2
- [Changelog](https://github.com/inspect-js/is-core-module/blob/main/CHANGELOG.md)
- [Commits](inspect-js/is-core-module@v2.16.1...v2.16.2)

Updates `is-identifier` from 1.0.0 to 1.0.1
- [Release notes](https://github.com/sindresorhus/is-identifier/releases)
- [Commits](sindresorhus/is-identifier@v1.0.0...v1.0.1)

Updates `nanoid` from 3.3.11 to 3.3.15
- [Release notes](https://github.com/ai/nanoid/releases)
- [Changelog](https://github.com/ai/nanoid/blob/3.3.15/CHANGELOG.md)
- [Commits](ai/nanoid@3.3.11...3.3.15)

Updates `node-releases` from 2.0.37 to 2.0.48
- [Commits](chicoxyzzy/node-releases@v2.0.37...v2.0.48)

Updates `optionator` from 0.9.3 to 0.9.4
- [Changelog](https://github.com/gkz/optionator/blob/master/CHANGELOG.md)
- [Commits](https://github.com/gkz/optionator/commits)

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

Updates `postcss-color-functional-notation` from 8.0.4 to 8.0.5
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-color-functional-notation/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-color-functional-notation)

Updates `postcss-colormin` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-colormin@8.0.0...postcss-colormin@8.0.1)

Updates `postcss-convert-values` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-convert-values@8.0.0...postcss-convert-values@8.0.1)

Updates `postcss-discard-comments` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-discard-comments@8.0.0...postcss-discard-comments@8.0.1)

Updates `postcss-discard-duplicates` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-discard-duplicates@8.0.0...postcss-discard-duplicates@8.0.1)

Updates `postcss-discard-empty` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-discard-empty@8.0.0...postcss-discard-empty@8.0.1)

Updates `postcss-discard-overridden` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-discard-overridden@8.0.0...postcss-discard-overridden@8.0.1)

Updates `postcss-lab-function` from 8.0.4 to 8.0.5
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/plugins/postcss-lab-function/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/plugins/postcss-lab-function)

Updates `postcss-merge-longhand` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-merge-longhand@8.0.0...postcss-merge-longhand@8.0.1)

Updates `postcss-merge-rules` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-merge-rules@8.0.0...postcss-merge-rules@8.0.1)

Updates `postcss-minify-font-values` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-minify-font-values@8.0.0...postcss-minify-font-values@8.0.1)

Updates `postcss-minify-gradients` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-minify-gradients@8.0.0...postcss-minify-gradients@8.0.1)

Updates `postcss-minify-params` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-minify-params@8.0.0...postcss-minify-params@8.0.1)

Updates `postcss-minify-selectors` from 8.0.1 to 8.0.2
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-minify-selectors@8.0.1...postcss-minify-selectors@8.0.2)

Updates `postcss-normalize-charset` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-normalize-charset@8.0.0...postcss-normalize-charset@8.0.1)

Updates `postcss-normalize-display-values` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-normalize-display-values@8.0.0...postcss-normalize-display-values@8.0.1)

Updates `postcss-normalize-positions` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-normalize-positions@8.0.0...postcss-normalize-positions@8.0.1)

Updates `postcss-normalize-repeat-style` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-normalize-repeat-style@8.0.0...postcss-normalize-repeat-style@8.0.1)

Updates `postcss-normalize-string` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-normalize-string@8.0.0...postcss-normalize-string@8.0.1)

Updates `postcss-normalize-timing-functions` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-normalize-timing-functions@8.0.0...postcss-normalize-timing-functions@8.0.1)

Updates `postcss-normalize-unicode` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-normalize-unicode@8.0.0...postcss-normalize-unicode@8.0.1)

Updates `postcss-normalize-url` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-normalize-url@8.0.0...postcss-normalize-url@8.0.1)

Updates `postcss-normalize-whitespace` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-normalize-whitespace@8.0.0...postcss-normalize-whitespace@8.0.1)

Updates `postcss-ordered-values` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-ordered-values@8.0.0...postcss-ordered-values@8.0.1)

Updates `postcss-reduce-initial` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-reduce-initial@8.0.0...postcss-reduce-initial@8.0.1)

Updates `postcss-reduce-transforms` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-reduce-transforms@8.0.0...postcss-reduce-transforms@8.0.1)

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

Updates `postcss-svgo` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-svgo@8.0.0...postcss-svgo@8.0.1)

Updates `postcss-unique-selectors` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/postcss-unique-selectors@8.0.0...postcss-unique-selectors@8.0.1)

Updates `pump` from 3.0.0 to 3.0.4
- [Commits](mafintosh/pump@v3.0.0...v3.0.4)

Updates `reserved-identifiers` from 1.0.0 to 1.2.0
- [Release notes](https://github.com/sindresorhus/reserved-identifiers/releases)
- [Commits](sindresorhus/reserved-identifiers@v1.0.0...v1.2.0)

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

Updates `reusify` from 1.0.4 to 1.1.0
- [Release notes](https://github.com/mcollina/reusify/releases)
- [Commits](mcollina/reusify@v1.0.4...v1.1.0)

Updates `sax` from 1.5.0 to 1.6.0
- [Commits](isaacs/sax-js@v1.5.0...v1.6.0)

Updates `streamx` from 2.25.0 to 2.28.0
- [Commits](mafintosh/streamx@v2.25.0...v2.28.0)

Updates `stylehacks` from 8.0.0 to 8.0.1
- [Release notes](https://github.com/cssnano/cssnano/releases)
- [Commits](https://github.com/cssnano/cssnano/compare/stylehacks@8.0.0...stylehacks@8.0.1)

Updates `@csstools/css-syntax-patches-for-csstree` from 1.1.4 to 1.1.5
- [Changelog](https://github.com/csstools/postcss-plugins/blob/main/packages/css-syntax-patches-for-csstree/CHANGELOG.md)
- [Commits](https://github.com/csstools/postcss-plugins/commits/HEAD/packages/css-syntax-patches-for-csstree)

Updates `super-regex` from 1.0.0 to 1.1.0
- [Release notes](https://github.com/sindresorhus/super-regex/releases)
- [Commits](sindresorhus/super-regex@v1.0.0...v1.1.0)

Updates `supports-hyperlinks` from 4.4.0 to 4.5.0
- [Release notes](https://github.com/chalk/supports-hyperlinks/releases)
- [Commits](chalk/supports-hyperlinks@v4.4.0...v4.5.0)

Updates `terser-webpack-plugin` from 5.6.0 to 5.6.1
- [Release notes](https://github.com/webpack/minimizer-webpack-plugin/releases)
- [Changelog](https://github.com/webpack/minimizer-webpack-plugin/blob/main/CHANGELOG.md)
- [Commits](webpack/minimizer-webpack-plugin@v5.6.0...v5.6.1)

Updates `to-buffer` from 1.1.1 to 1.2.2
- [Changelog](https://github.com/browserify/to-buffer/blob/main/CHANGELOG.md)
- [Commits](browserify/to-buffer@v1.1.1...v1.2.2)

Updates `touch` from 3.1.0 to 3.1.1
- [Commits](isaacs/node-touch@v3.1.0...v3.1.1)

Updates `watchpack` from 2.5.1 to 2.5.2
- [Release notes](https://github.com/webpack/watchpack/releases)
- [Changelog](https://github.com/webpack/watchpack/blob/main/CHANGELOG.md)
- [Commits](webpack/watchpack@v2.5.1...v2.5.2)

Updates `yaml` from 2.8.3 to 2.9.0
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v2.8.3...v2.9.0)

---
updated-dependencies:
- dependency-name: "@csstools/css-color-parser"
  dependency-version: 4.1.8
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@csstools/css-syntax-patches-for-csstree"
  dependency-version: 1.1.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@csstools/postcss-alpha-function"
  dependency-version: 2.0.6
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@csstools/postcss-color-function"
  dependency-version: 5.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@csstools/postcss-color-function-display-p3-linear"
  dependency-version: 2.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@csstools/postcss-color-mix-function"
  dependency-version: 4.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@csstools/postcss-color-mix-variadic-function-arguments"
  dependency-version: 2.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@csstools/postcss-contrast-color-function"
  dependency-version: 3.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@csstools/postcss-gamut-mapping"
  dependency-version: 3.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@csstools/postcss-gradients-interpolation-method"
  dependency-version: 6.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@csstools/postcss-hwb-function"
  dependency-version: 5.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@csstools/postcss-oklab-function"
  dependency-version: 5.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@csstools/postcss-relative-color-syntax"
  dependency-version: 4.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@eslint/plugin-kit"
  dependency-version: 0.7.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@napi-rs/wasm-runtime"
  dependency-version: 1.1.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@types/estree"
  dependency-version: 1.0.9
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: "@typescript-eslint/types"
  dependency-version: 8.62.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-patching
- dependency-name: acorn
  dependency-version: 8.17.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-patching
- dependency-name: bare-events
  dependency-version: 2.9.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-patching
- dependency-name: baseline-browser-mapping
  dependency-version: 2.10.38
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: browserslist
  dependency-version: 4.28.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: caniuse-api
  dependency-version: 4.0.0
  dependency-type: indirect
  update-type: version-update:semver-major
  dependency-group: npm-patching
- dependency-name: caniuse-lite
  dependency-version: 1.0.30001799
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: chrome-trace-event
  dependency-version: 1.0.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: cosmiconfig
  dependency-version: 9.0.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: cssnano
  dependency-version: 8.0.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: cssnano-preset-default
  dependency-version: 8.0.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: cssnano-utils
  dependency-version: 6.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: electron-to-chromium
  dependency-version: 1.5.376
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: end-of-stream
  dependency-version: 1.4.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: enhanced-resolve
  dependency-version: 5.24.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-patching
- dependency-name: eslint-plugin-import-x
  dependency-version: 4.17.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-patching
- dependency-name: eslint-plugin-n
  dependency-version: 18.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: npm-patching
- dependency-name: fastq
  dependency-version: 1.20.1
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-patching
- dependency-name: hasown
  dependency-version: 2.0.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: identifier-regex
  dependency-version: 1.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: is-core-module
  dependency-version: 2.16.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: is-identifier
  dependency-version: 1.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: nanoid
  dependency-version: 3.3.15
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: node-releases
  dependency-version: 2.0.48
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: optionator
  dependency-version: 0.9.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss
  dependency-version: 8.5.15
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-color-functional-notation
  dependency-version: 8.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-colormin
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-convert-values
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-discard-comments
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-discard-duplicates
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-discard-empty
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-discard-overridden
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-lab-function
  dependency-version: 8.0.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-merge-longhand
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-merge-rules
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-minify-font-values
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-minify-gradients
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-minify-params
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-minify-selectors
  dependency-version: 8.0.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-normalize-charset
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-normalize-display-values
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-normalize-positions
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-normalize-repeat-style
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-normalize-string
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-normalize-timing-functions
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-normalize-unicode
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-normalize-url
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-normalize-whitespace
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-ordered-values
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-preset-env
  dependency-version: 11.3.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-reduce-initial
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-reduce-transforms
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-selector-parser
  dependency-version: 7.1.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-svgo
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: postcss-unique-selectors
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: pump
  dependency-version: 3.0.4
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: reserved-identifiers
  dependency-version: 1.2.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-patching
- dependency-name: resolve
  dependency-version: 1.22.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: reusify
  dependency-version: 1.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-patching
- dependency-name: sax
  dependency-version: 1.6.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-patching
- dependency-name: streamx
  dependency-version: 2.28.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-patching
- dependency-name: stylehacks
  dependency-version: 8.0.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: super-regex
  dependency-version: 1.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-patching
- dependency-name: supports-hyperlinks
  dependency-version: 4.5.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-patching
- dependency-name: terser-webpack-plugin
  dependency-version: 5.6.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: to-buffer
  dependency-version: 1.2.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-patching
- dependency-name: touch
  dependency-version: 3.1.1
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: watchpack
  dependency-version: 2.5.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: webpack
  dependency-version: 5.107.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: npm-patching
- dependency-name: yaml
  dependency-version: 2.9.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: npm-patching
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot changed the title Bump the npm-patching group with 87 updates Bump the npm-patching group across 1 directory with 87 updates Jun 22, 2026
@dependabot dependabot Bot force-pushed the dependabot/npm_and_yarn/npm-patching-15a510600a branch from 53d3826 to dd5a4cf Compare June 22, 2026 21:13
@lewisgoddard lewisgoddard enabled auto-merge (squash) June 22, 2026 21:15
@lewisgoddard lewisgoddard merged commit 7ac50ea into master Jun 22, 2026
5 checks passed
@lewisgoddard lewisgoddard deleted the dependabot/npm_and_yarn/npm-patching-15a510600a branch June 22, 2026 21:16
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