Skip to content

build(deps): bump the npm_and_yarn group across 1 directory with 16 updates#691

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/npm_and_yarn-80ccf4af87
Open

build(deps): bump the npm_and_yarn group across 1 directory with 16 updates#691
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/npm_and_yarn/npm_and_yarn-80ccf4af87

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot bot commented on behalf of github Mar 27, 2026

Bumps the npm_and_yarn group with 16 updates in the / directory:

Package From To
ajv 6.12.6 6.14.0
dompurify 3.2.6 3.3.3
flatted 3.3.3 3.4.2
js-yaml 3.14.1 3.14.2
lodash 4.17.21 4.17.23
mdast-util-to-hast 13.2.0 13.2.1
mermaid 11.6.0 11.13.0
node-forge 1.3.1 1.4.0
picomatch 2.3.1 2.3.2
rollup 2.79.2 2.80.0
svgo 3.3.2 3.3.3
tar-fs 2.1.3 2.1.4
tar 7.4.3 7.5.13
webpack 5.99.9 5.105.4
yaml 1.10.2 1.10.3
yauzl 3.2.0 3.2.1

Updates ajv from 6.12.6 to 6.14.0

Commits

Updates dompurify from 3.2.6 to 3.3.3

Release notes

Sourced from dompurify's releases.

DOMPurify 3.3.3

  • Fixed an engine requirement for Node 20 which caused hiccups, thanks @​Rotzbua

DOMPurify 3.3.2

  • Fixed a possible bypass caused by jsdom's faulty raw-text tag parsing, thanks multiple reporters
  • Fixed a prototype pollution issue when working with custom elements, thanks @​christos-eth
  • Fixed a lenient config parsing in _isValidAttribute, thanks @​christos-eth
  • Bumped and removed several dependencies, thanks @​Rotzbua
  • Fixed the test suite after bumping dependencies, thanks @​Rotzbua

DOMPurify 3.3.1

  • Updated ADD_FORBID_CONTENTS setting to extend default list, thanks @​MariusRumpf
  • Updated the ESM import syntax to be more correct, thanks @​binhpv

DOMPurify 3.3.0

  • Added the SVG mask-type attribute to default allow-list, thanks @​prasadrajandran
  • Added support for ADD_ATTR and ADD_TAGS to accept functions, thanks @​nelstrom
  • Fixed an issue with the slot element being in both SVG and HTML allow-list, thanks @​Wim-Valgaeren

DOMPurify 3.2.7

  • Added new attributes and elements to default allow-list, thanks @​elrion018
  • Added tagName parameter to custom element attributeNameCheck, thanks @​nelstrom
  • Added better check for animated href attributes, thanks @​llamakko
  • Updated and improved the bundled types, thanks @​ssi02014
  • Updated several tests to better align with new browser encoding behaviors
  • Improved the handling of potentially risky content inside CDATA elements, thanks @​securityMB & @​terjanq
  • Improved the regular expression for raw-text elements to cover textareas, thanks @​securityMB & @​terjanq
Commits
  • 8bcbf73 chore: Preparing 3.3.3 release
  • 5faddd6 fix: engine requirement (#1210)
  • 0f91e3a Update README.md
  • d5ff1a8 Merge branch 'main' of github.com:cure53/DOMPurify
  • c3efd48 fix: moved back from jsdom 28 to jsdom 20
  • 988b888 fix: moved back from jsdom 28 to jsdom 20
  • 2726c74 chore: Preparing 3.3.2 release
  • 6202c7e build(deps): bump @​tootallnate/once and jsdom (#1204)
  • 302b51d fix: Expanded the regex ever so slightly to also cover script
  • cd85175 Merge branch 'main' of github.com:cure53/DOMPurify
  • Additional commits viewable in compare view

Updates flatted from 3.3.3 to 3.4.2

Commits
  • 3bf0909 3.4.2
  • 885ddcc fix CWE-1321
  • 0bdba70 added flatted-view to the benchmark
  • 2a02dce 3.4.1
  • fba4e8f Merge pull request #89 from WebReflection/python-fix
  • 5fe8648 added "when in Rome" also a test for PHP
  • 53517ad some minor improvement
  • b3e2a0c Fixing recursion issue in Python too
  • c4b46db Add SECURITY.md for security policy and reporting
  • f86d071 Create dependabot.yml for version updates
  • Additional commits viewable in compare view

Updates js-yaml from 3.14.1 to 3.14.2

Changelog

Sourced from js-yaml's changelog.

[3.14.2] - 2025-11-15

Security

  • Backported v4.1.1 fix to v3

[4.1.1] - 2025-11-12

Security

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

[4.1.0] - 2021-04-15

Added

  • Types are now exported as yaml.types.XXX.
  • Every type now has options property with original arguments kept as they were (see yaml.types.int.options as an example).

Changed

  • Schema.extend() now keeps old type order in case of conflicts (e.g. Schema.extend([ a, b, c ]).extend([ b, a, d ]) is now ordered as abcd instead of cbad).

[4.0.0] - 2021-01-03

Changed

  • Check migration guide to see details for all breaking changes.
  • Breaking: "unsafe" tags !!js/function, !!js/regexp, !!js/undefined are moved to js-yaml-js-types package.
  • Breaking: removed safe* functions. Use load, loadAll, dump instead which are all now safe by default.
  • yaml.DEFAULT_SAFE_SCHEMA and yaml.DEFAULT_FULL_SCHEMA are removed, use yaml.DEFAULT_SCHEMA instead.
  • yaml.Schema.create(schema, tags) is removed, use schema.extend(tags) instead.
  • !!binary now always mapped to Uint8Array on load.
  • Reduced nesting of /lib folder.
  • Parse numbers according to YAML 1.2 instead of YAML 1.1 (01234 is now decimal, 0o1234 is octal, 1:23 is parsed as string instead of base60).
  • dump() no longer quotes :, [, ], (, ) except when necessary, #470, #557.
  • Line and column in exceptions are now formatted as (X:Y) instead of at line X, column Y (also present in compact format), #332.
  • Code snippet created in exceptions now contains multiple lines with line numbers.
  • dump() now serializes undefined as null in collections and removes keys with undefined in mappings, #571.
  • dump() with skipInvalid=true now serializes invalid items in collections as null.
  • Custom tags starting with ! are now dumped as !tag instead of !<!tag>, #576.
  • Custom tags starting with tag:yaml.org,2002: are now shorthanded using !!, #258.

Added

  • Added .mjs (es modules) support.
  • Added quotingType and forceQuotes options for dumper to configure string literal style, #290, #529.
  • Added styles: { '!!null': 'empty' } option for dumper (serializes { foo: null } as "foo: "), #570.

... (truncated)

Commits

Updates lodash from 4.17.21 to 4.17.23

Commits

Updates mdast-util-to-hast from 13.2.0 to 13.2.1

Release notes

Sourced from mdast-util-to-hast's releases.

13.2.1

Fix

  • ab3a795 Fix support for spaces in class names

Types

  • efb5312 Refactor to use @imports
  • a5bc210 Add declaration maps

Full Changelog: syntax-tree/mdast-util-to-hast@13.2.0...13.2.1

Commits

Updates mermaid from 11.6.0 to 11.13.0

Release notes

Sourced from mermaid's releases.

mermaid@11.13.0

Minor Changes

Patch Changes

... (truncated)

Commits
Maintainer changes

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


Updates node-forge from 1.3.1 to 1.4.0

Changelog

Sourced from node-forge's changelog.

1.4.0 - 2026-03-24

Security

  • HIGH: Denial of Service in BigInteger.modInverse()
    • A Denial of Service (DoS) vulnerability exists due to an infinite loop in the BigInteger.modInverse() function (inherited from the bundled jsbn library). When modInverse() is called with a zero value as input, the internal Extended Euclidean Algorithm enters an unreachable exit condition, causing the process to hang indefinitely and consume 100% CPU.
    • Reported by Kr0emer.
    • CVE ID: CVE-2026-33891
    • GHSA ID: GHSA-5gfm-wpxj-wjgq
  • HIGH: Signature forgery in RSA-PKCS due to ASN.1 extra field.
    • RSASSA PKCS#1 v1.5 signature verification accepts forged signatures for low public exponent keys (e=3). Attackers can forge signatures by stuffing "garbage" bytes within the ASN.1 structure in order to construct a signature that passes verification, enabling Bleichenbacher style forgery. This issue is similar to CVE-2022-24771, but adds bytes in an addition field within the ASN.1 structure, rather than outside of it.
    • Additionally, forge does not validate that signatures include a minimum of 8 bytes of padding as defined by the specification, providing attackers additional space to construct Bleichenbacher forgeries.
    • Reported as part of a U.C. Berkeley security research project by:
      • Austin Chu, Sohee Kim, and Corban Villa.
    • CVE ID: CVE-2026-33894
    • GHSA ID: GHSA-ppp5-5v6c-4jwp
  • HIGH: Signature forgery in Ed25519 due to missing S < L check.
    • Ed25519 signature verification accepts forged non-canonical signatures where the scalar S is not reduced modulo the group order (S >= L). A valid signature and its S + L variant both verify in forge, while Node.js crypto.verify (OpenSSL-backed) rejects the S + L variant, as defined by the specification. This class of signature malleability has been exploited in practice to bypass authentication and authorization logic (see CVE-2026-25793, CVE-2022-35961). Applications relying on signature uniqueness (i.e., dedup by signature bytes, replay tracking, signed-object canonicalization checks) may be bypassed.
    • Reported as part of a U.C. Berkeley security research project by:
      • Austin Chu, Sohee Kim, and Corban Villa.
    • CVE ID: CVE-2026-33895
    • GHSA ID: GHSA-q67f-28xg-22rw
  • HIGH: basicConstraints bypass in certificate chain verification.
    • pki.verifyCertificateChain() does not enforce RFC 5280 basicConstraints requirements when an intermediate certificate lacks both the basicConstraints and keyUsage extensions. This allows any leaf certificate (without these extensions) to act as a CA and sign other certificates, which node-forge will accept as valid.
    • Reported by Doruk Tan Ozturk (@​peaktwilight) - doruk.ch
    • CVE ID: CVE-2026-33896
    • GHSA ID: GHSA-2328-f5f3-gj25

... (truncated)

Commits

Updates picomatch from 2.3.1 to 2.3.2

Release notes

Sourced from picomatch's releases.

2.3.2

This is a security release fixing several security relevant issues.

What's Changed

Full Changelog: micromatch/picomatch@2.3.1...2.3.2

Changelog

Sourced from picomatch's changelog.

Release history

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

  • Changelogs are for humans, not machines.
  • There should be an entry for every single version.
  • The same types of changes should be grouped.
  • Versions and sections should be linkable.
  • The latest version comes first.
  • The release date of each versions is displayed.
  • Mention whether you follow Semantic Versioning.

Changelog entries are classified using the following labels (from keep-a-changelog):

  • Added for new features.
  • Changed for changes in existing functionality.
  • Deprecated for soon-to-be removed features.
  • Removed for now removed features.
  • Fixed for any bug fixes.
  • Security in case of vulnerabilities.

4.0.0 (2024-02-07)

Fixes

Changed

3.0.1

Fixes

... (truncated)

Commits

Updates rollup from 2.79.2 to 2.80.0

Changelog

Sourced from rollup's changelog.

2.80.0

2026-02-22

Features

  • Throw when the generated bundle contains paths that would leave the output directory (#6277)

Pull Requests

Commits
Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


Updates svgo from 3.3.2 to 3.3.3

Release notes

Sourced from svgo's releases.

v3.3.3

What's Changed

Dependencies

  • Migrates from our unsupported fork of sax (@​trysound/sax) to the upstream version of sax (sax).

Bug Fixes

  • No longer throws error when encountering comments in DTD.

Metrics

Before and after of the browser bundle of each respective version:

v3.3.2 v3.3.3 Delta
svgo.browser.js 910.9 kB 912.9 kB ⬆️ 2 kB

Support

SVGO v3 is not officially supported, please consider upgrading to SVGO v4 instead. We've backported this fix as there are security implications, but there is no commitment to do this for more complex changes in future.

Consider reading our Migration Guide from v3 to v4 which should ease the process.

Commits

Updates tar-fs from 2.1.3 to 2.1.4

Commits

Updates tar from 7.4.3 to 7.5.13

Changelog

Sourced from tar's changelog.

Changelog

7.5

  • Added zstd compression support.
  • Consistent TOCTOU behavior in sync t.list
  • Only read from ustar block if not specified in Pax
  • Fix sync tar.list when file size reduces while reading
  • Sanitize absolute linkpaths properly
  • Prevent writing hardlink entries to the archive ahead of their file target

7.4

  • Deprecate onentry in favor of onReadEntry for clarity.

7.3

  • Add onWriteEntry option

7.2

  • DRY the command definitions into a single makeCommand method, and update the type signatures to more appropriately infer the return type from the options and arguments provided.

7.1

  • Update minipass to v7.1.0
  • Update the type definitions of write() and end() methods on Unpack and Parser classes to be compatible with the NodeJS.WritableStream type in the latest versions of @types/node.

7.0

  • Drop support for node <18
  • Rewrite in TypeScript, provide ESM and CommonJS hybrid interface
  • Add tree-shake friendly exports, like import('tar/create') and import('tar/read-entry') to get individual functions or classes.
  • Add chmod option that defaults to false, and deprecate noChmod. That is, reverse the default option regarding explicitly setting file system modes to match tar entry settings.
  • Add processUmask option to avoid having to call process.umask() when chmod: true (or noChmod: false) is set.

... (truncated)

Commits
Maintainer changes

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

Install script changes

This version adds prepare script that runs during installation. Review the package contents before updating.


Updates webpack from 5.99.9 to 5.105.4

Release notes

Sourced from webpack's releases.

v5.105.4

Patch Changes

  • Add Module.getSourceBasicTypes to distinguish basic source types and clarify how modules with non-basic source types like remote still produce JavaScript output. (by @​xiaoxiaojx in #20546)

  • Handle createRequire in expressions. (by @​alexander-akait in #20549)

  • Fixed types for multi stats. (by @​alexander-akait in #20556)

  • Remove empty needless js output for normal css module. (by @​JSerFeng in #20162)

  • Update enhanced-resolve to support new features for tsconfig.json. (by @​alexander-akait in #20555)

  • Narrows export presence guard detection to explicit existence checks on namespace imports only, i.e. patterns like "x" in ns. (by @​hai-x in #20561)

v5.105.3

Patch Changes

  • Context modules now handle rejections correctly. (by @​alexander-akait in #20455)

  • Only mark asset modules as side-effect-free when experimental.futureDefaults is set to true, so asset-copying use cases (e.g. import "./x.png") won’t break unless the option is enabled. (by @​hai-x in #20535)

  • Add the missing webpack_exports declaration in certain cases when bundling a JS entry together with non-JS entries (e.g., CSS entry or asset module entry). (by @​hai-x in #20463)

  • Fixed HMR failure for CSS modules with @​import when exportType !== "link". When exportType is not "link", CSS modules now behave like JavaScript modules and don't require special HMR handling, allowing @​import CSS to work correctly during hot module replacement. (by @​xiaoxiaojx in #20514)

  • Fixed an issue where empty JavaScript files were generated for CSS-only entry points. The code now correctly checks if entry modules have JavaScript source types before determining whether to generate a JS file. (by @​xiaoxiaojx in #20454)

  • Do not crash when a referenced chunk is not a runtime chunk. (by @​alexander-akait in #20461)

  • Fix some types. (by @​alexander-akait in #20412)

  • Ensure that missing module error are thrown after the interception handler (if present), allowing module interception to customize the module factory. (by @​hai-x in #20510)

  • Added createRequire support for ECMA modules. (by @​stefanbinoj in #20497)

  • Added category for CJS reexport dependency to fix issues with ECMA modules. (by @​hai-x in #20444)

  • Implement immutable bytes for bytes import attribute to match tc39 spec. (by @​alexander-akait in #20481)

  • Fixed deterministic search for graph roots regardless of edge order. (by @​veeceey in #20452)

v5.105.2

Patch Changes

v5.105.1

Patch Changes

... (truncated)

Changelog

Sourced from webpack's changelog.

5.105.4

Patch Changes

  • Add Module.getSourceBasicTypes to distinguish basic source types and clarify how modules with non-basic source types like remote still produce JavaScript output. (by @​xiaoxiaojx in #20546)

  • Handle createRequire in expressions. (by @​alexander-akait in #20549)

  • Fixed types for multi stats. (by @​alexander-akait in #20556)

  • Remove empty needless js output for normal css module. (by @​JSerFeng in #20162)

  • Update enhanced-resolve to support new features for tsconfig.json. (by @​alexander-akait in #20555)

  • Narrows export presence guard detection to explicit existence checks on namespace imports only, i.e. patterns like "x" in ns. (by @​hai-x in #20561)

5.105.3

Patch Changes

  • Context modules now handle rejections correctly. (by @​alexander-akait in #20455)

  • Only mark asset modules as side-effect-free when experimental.futureDefaults is set to true, so asset-copying use cases (e.g. import "./x.png") won’t break unless the option is enabled. (by @​hai-x in #20535)

  • Add the missing webpack_exports declaration in certain cases when bundling a JS entry together with non-JS entries (e.g., CSS entry or asset module entry). (by @​hai-x in #20463)

  • Fixed HMR failure for CSS modules with @​import when exportType !== "link". When exportType is not "link", CSS modules now behave like JavaScript modules and don't require special HMR handling, allowing @​import CSS to work correctly during hot module replacement. (by @​xiaoxiaojx in #20514)

  • Fixed an issue where empty JavaScript files were generated for CSS-only entry points. The code now correctly checks if entry modules have JavaScript source types before determining whether to generate a JS file. (by @​xiaoxiaojx in #20454)

  • Do not crash when a referenced chunk is not a runtime chunk. (by @​alexander-akait in #20461)

  • Fix some types. (by @​alexander-akait in #20412)

  • Ensure that missing module error are thrown after the interception handler (if present), allowing module interception to customize the module factory. (by @​hai-x in #20510)

  • Added createRequire support for ECMA modules. (by @​stefanbinoj in #20497)

  • Added category for CJS reexport dependency to fix issues with ECMA modules. (by @​hai-x in #20444)

  • Implement immutable bytes for bytes import attribute to match tc39 spec. (by @​alexander-akait in #20481)

  • Fixed deterministic search for graph roots regardless of edge order. (by @​veeceey in #20452)

5.105.2

Patch Changes

... (truncated)

Commits
  • 27c13b4 chore(release): new release (#20550)
  • 9b2f41e chore: bump terser plugin (#20569)
  • eafe060 fix: narrow the export presence guard detection (#20561)
  • 75d605c refactor: add AppendOnlyStackedSet iteration support and tests (#20560)
  • afa607d refactor: remove unused code (#20562)
  • 4098902 test: add source files for web-webworker and web-webworker-auto-public-path (...
  • f97be67 refactor: fix duplicated word in Compilation JSDoc (#20547)
  • 9d76fff refactor: add Module.getSourceBasicTypes for basic JS type detection (#20546)
  • a3d7839 fix: types for multi stats (#20556)
  • b8e9b05 fix: update enhanced-resolve to support new features for tsconfig.json (#...
  • 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 webpack since your current version.


Updates yaml from 1.10.2 to 1.10.3

Commits
  • cfe8f04 1.10.3
  • 7abcf45 fix: Catch stack overflow during CST composition
  • a0252f8 chore: Add rules avoiding processing of tests/json-test-suite
  • a5e83b0 style: Apply updates Prettier rules
  • b8ddca0 chore: Refresh lockfile
  • 395f892 ci: Use a different (working) submodule checkout
  • 6fd2720 test-events: Add {} and [] indicators to flow maps & sequences
  • See full diff in compare view

Updates yauzl from 3.2.0 to 3.2.1

Commits
  • c469521 version 3.2.1
  • 00c561b fix bounds checking logic on NtfsTimestamp
  • 277b294 comment
  • de292f2 streamed zip file test
  • e00f139 truncate long test file names for eCryptfs compatibility
  • d98e052 fix name of Info-ZIP
  • a8951a2 update readme
  • See full diff in

…pdates

Bumps the npm_and_yarn group with 16 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [ajv](https://github.com/ajv-validator/ajv) | `6.12.6` | `6.14.0` |
| [dompurify](https://github.com/cure53/DOMPurify) | `3.2.6` | `3.3.3` |
| [flatted](https://github.com/WebReflection/flatted) | `3.3.3` | `3.4.2` |
| [js-yaml](https://github.com/nodeca/js-yaml) | `3.14.1` | `3.14.2` |
| [lodash](https://github.com/lodash/lodash) | `4.17.21` | `4.17.23` |
| [mdast-util-to-hast](https://github.com/syntax-tree/mdast-util-to-hast) | `13.2.0` | `13.2.1` |
| [mermaid](https://github.com/mermaid-js/mermaid) | `11.6.0` | `11.13.0` |
| [node-forge](https://github.com/digitalbazaar/forge) | `1.3.1` | `1.4.0` |
| [picomatch](https://github.com/micromatch/picomatch) | `2.3.1` | `2.3.2` |
| [rollup](https://github.com/rollup/rollup) | `2.79.2` | `2.80.0` |
| [svgo](https://github.com/svg/svgo) | `3.3.2` | `3.3.3` |
| [tar-fs](https://github.com/mafintosh/tar-fs) | `2.1.3` | `2.1.4` |
| [tar](https://github.com/isaacs/node-tar) | `7.4.3` | `7.5.13` |
| [webpack](https://github.com/webpack/webpack) | `5.99.9` | `5.105.4` |
| [yaml](https://github.com/eemeli/yaml) | `1.10.2` | `1.10.3` |
| [yauzl](https://github.com/thejoshwolfe/yauzl) | `3.2.0` | `3.2.1` |



Updates `ajv` from 6.12.6 to 6.14.0
- [Release notes](https://github.com/ajv-validator/ajv/releases)
- [Commits](ajv-validator/ajv@v6.12.6...v6.14.0)

Updates `dompurify` from 3.2.6 to 3.3.3
- [Release notes](https://github.com/cure53/DOMPurify/releases)
- [Commits](cure53/DOMPurify@3.2.6...3.3.3)

Updates `flatted` from 3.3.3 to 3.4.2
- [Commits](WebReflection/flatted@v3.3.3...v3.4.2)

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

Updates `lodash` from 4.17.21 to 4.17.23
- [Release notes](https://github.com/lodash/lodash/releases)
- [Commits](lodash/lodash@4.17.21...4.17.23)

Updates `mdast-util-to-hast` from 13.2.0 to 13.2.1
- [Release notes](https://github.com/syntax-tree/mdast-util-to-hast/releases)
- [Commits](syntax-tree/mdast-util-to-hast@13.2.0...13.2.1)

Updates `mermaid` from 11.6.0 to 11.13.0
- [Release notes](https://github.com/mermaid-js/mermaid/releases)
- [Commits](https://github.com/mermaid-js/mermaid/compare/mermaid@11.6.0...mermaid@11.13.0)

Updates `node-forge` from 1.3.1 to 1.4.0
- [Changelog](https://github.com/digitalbazaar/forge/blob/main/CHANGELOG.md)
- [Commits](digitalbazaar/forge@v1.3.1...v1.4.0)

Updates `picomatch` from 2.3.1 to 2.3.2
- [Release notes](https://github.com/micromatch/picomatch/releases)
- [Changelog](https://github.com/micromatch/picomatch/blob/master/CHANGELOG.md)
- [Commits](micromatch/picomatch@2.3.1...2.3.2)

Updates `rollup` from 2.79.2 to 2.80.0
- [Release notes](https://github.com/rollup/rollup/releases)
- [Changelog](https://github.com/rollup/rollup/blob/v2.80.0/CHANGELOG.md)
- [Commits](rollup/rollup@v2.79.2...v2.80.0)

Updates `svgo` from 3.3.2 to 3.3.3
- [Release notes](https://github.com/svg/svgo/releases)
- [Commits](svg/svgo@v3.3.2...v3.3.3)

Updates `tar-fs` from 2.1.3 to 2.1.4
- [Commits](mafintosh/tar-fs@v2.1.3...v2.1.4)

Updates `tar` from 7.4.3 to 7.5.13
- [Release notes](https://github.com/isaacs/node-tar/releases)
- [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md)
- [Commits](isaacs/node-tar@v7.4.3...v7.5.13)

Updates `webpack` from 5.99.9 to 5.105.4
- [Release notes](https://github.com/webpack/webpack/releases)
- [Changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md)
- [Commits](webpack/webpack@v5.99.9...v5.105.4)

Updates `yaml` from 1.10.2 to 1.10.3
- [Release notes](https://github.com/eemeli/yaml/releases)
- [Commits](eemeli/yaml@v1.10.2...v1.10.3)

Updates `yauzl` from 3.2.0 to 3.2.1
- [Commits](thejoshwolfe/yauzl@3.2.0...3.2.1)

---
updated-dependencies:
- dependency-name: ajv
  dependency-version: 6.14.0
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: dompurify
  dependency-version: 3.3.3
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: flatted
  dependency-version: 3.4.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: js-yaml
  dependency-version: 3.14.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: lodash
  dependency-version: 4.17.23
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: mdast-util-to-hast
  dependency-version: 13.2.1
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: mermaid
  dependency-version: 11.13.0
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: node-forge
  dependency-version: 1.4.0
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: picomatch
  dependency-version: 2.3.2
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: rollup
  dependency-version: 2.80.0
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: svgo
  dependency-version: 3.3.3
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: tar-fs
  dependency-version: 2.1.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: tar
  dependency-version: 7.5.13
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: webpack
  dependency-version: 5.105.4
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: yaml
  dependency-version: 1.10.3
  dependency-type: indirect
  dependency-group: npm_and_yarn
- dependency-name: yauzl
  dependency-version: 3.2.1
  dependency-type: indirect
  dependency-group: npm_and_yarn
...

Signed-off-by: dependabot[bot] <support@github.com>
@cloudflare-workers-and-pages
Copy link
Copy Markdown

cloudflare-workers-and-pages bot commented Mar 27, 2026

Deploying zsh with  Cloudflare Pages  Cloudflare Pages

Latest commit: f001ac9
Status: ✅  Deploy successful!
Preview URL: https://c763615a.zsh.pages.dev
Branch Preview URL: https://dependabot-npm-and-yarn-npm-dbji.zsh.pages.dev

View logs

@trunk-io
Copy link
Copy Markdown

trunk-io bot commented Mar 27, 2026

Merging to main in this repository is managed by Trunk.

  • To merge this pull request, check the box to the left or comment /trunk merge below.

@github-actions
Copy link
Copy Markdown
Contributor

Size Change: +251 kB (+2.74%)

Total Size: 9.42 MB

Filename Size Change
build/assets/js/1074.********.js 0 B -161 B (removed) 🏆
build/assets/js/1423.********.js 0 B -21.7 kB (removed) 🏆
build/assets/js/1535.********.js 0 B -34.5 kB (removed) 🏆
build/assets/js/1745.********.js 0 B -3.73 kB (removed) 🏆
build/assets/js/175b49cb.********.js 40.8 kB +252 B (+0.62%)
build/assets/js/1790.********.js 0 B -19.8 kB (removed) 🏆
build/assets/js/1874.********.js 0 B -14.4 kB (removed) 🏆
build/assets/js/1a4e3797.********.js 85 kB -45 B (-0.05%)
build/assets/js/2202.********.js 0 B -314 kB (removed) 🏆
build/assets/js/2286.********.js 0 B -3.84 kB (removed) 🏆
build/assets/js/2973.********.js 0 B -158 B (removed) 🏆
build/assets/js/2e789afb.********.js 70.1 kB +233 B (+0.33%)
build/assets/js/303.********.js 0 B -16 kB (removed) 🏆
build/assets/js/3250.********.js 0 B -159 B (removed) 🏆
build/assets/js/3376.********.js 0 B -157 B (removed) 🏆
build/assets/js/3868.********.js 0 B -152 B (removed) 🏆
build/assets/js/4111.********.js 0 B -33.7 kB (removed) 🏆
build/assets/js/42.********.js 0 B -8.22 kB (removed) 🏆
build/assets/js/4299.********.js 0 B -99.9 kB (removed) 🏆
build/assets/js/4326.********.js 0 B -37.1 kB (removed) 🏆
build/assets/js/4333.********.js 0 B -104 B (removed) 🏆
build/assets/js/4830.********.js 0 B -89.8 kB (removed) 🏆
build/assets/js/4905.********.js 0 B -1.29 kB (removed) 🏆
build/assets/js/5264.********.js 0 B -71 kB (removed) 🏆
build/assets/js/5490.********.js 0 B -397 B (removed) 🏆
build/assets/js/5529.********.js 0 B -21.9 kB (removed) 🏆
build/assets/js/567.********.js 0 B -45.3 kB (removed) 🏆
build/assets/js/5847.********.js 0 B -104 B (removed) 🏆
build/assets/js/6353.********.js 0 B -615 B (removed) 🏆
build/assets/js/6371.********.js 0 B -400 B (removed) 🏆
build/assets/js/6580.********.js 0 B -76.6 kB (removed) 🏆
build/assets/js/6636.********.js 0 B -30.6 kB (removed) 🏆
build/assets/js/6924.********.js 0 B -8.19 kB (removed) 🏆
build/assets/js/6991.********.js 0 B -60 kB (removed) 🏆
build/assets/js/7055.********.js 0 B -11.1 kB (removed) 🏆
build/assets/js/7116.********.js 0 B -41.6 kB (removed) 🏆
build/assets/js/7129.********.js 0 B -496 B (removed) 🏆
build/assets/js/7178.********.js 0 B -28.2 kB (removed) 🏆
build/assets/js/7354.********.js 0 B -11.3 kB (removed) 🏆
build/assets/js/7459.********.js 0 B -145 kB (removed) 🏆
build/assets/js/8090.********.js 0 B -427 kB (removed) 🏆
build/assets/js/8096.********.js 0 B -397 B (removed) 🏆
build/assets/js/8349.********.js 0 B -536 kB (removed) 🏆
build/assets/js/8367.********.js 0 B -165 B (removed) 🏆
build/assets/js/8429.********.js 0 B -25.5 kB (removed) 🏆
build/assets/js/8871.********.js 0 B -23.8 kB (removed) 🏆
build/assets/js/8953.********.js 0 B -1.12 kB (removed) 🏆
build/assets/js/9110.********.js 0 B -156 B (removed) 🏆
build/assets/js/9402.********.js 0 B -275 kB (removed) 🏆
build/assets/js/9409.********.js 0 B -37.3 kB (removed) 🏆
build/assets/js/9434.********.js 0 B -24.3 kB (removed) 🏆
build/assets/js/9614.********.js 0 B -21.8 kB (removed) 🏆
build/assets/js/986.********.js 0 B -6.05 kB (removed) 🏆
build/assets/js/d40a1e80.********.js 10.6 kB +248 B (+2.4%)
build/assets/js/f53487f0.********.js 12.7 kB +240 B (+1.93%)
build/assets/js/main.********.js 595 kB -446 B (-0.07%)
build/assets/js/runtime~main.********.js 8.76 kB -75 B (-0.85%)
build/assets/js/1194.********.js 11.5 kB +11.5 kB (new file) 🆕
build/assets/js/1244.********.js 30.9 kB +30.9 kB (new file) 🆕
build/assets/js/1591.********.js 17.5 kB +17.5 kB (new file) 🆕
build/assets/js/1634.********.js 113 kB +113 kB (new file) 🆕
build/assets/js/1829.********.js 168 B +168 B (new file) 🆕
build/assets/js/2342.********.js 21.6 kB +21.6 kB (new file) 🆕
build/assets/js/2399.********.js 6.12 kB +6.12 kB (new file) 🆕
build/assets/js/2703.********.js 161 B +161 B (new file) 🆕
build/assets/js/2710.********.js 36.4 kB +36.4 kB (new file) 🆕
build/assets/js/2754.********.js 552 kB +552 kB (new file) 🆕
build/assets/js/3577.********.js 268 kB +268 kB (new file) 🆕
build/assets/js/369.********.js 10.9 kB +10.9 kB (new file) 🆕
build/assets/js/3856.********.js 33.7 kB +33.7 kB (new file) 🆕
build/assets/js/3947.********.js 1.3 kB +1.3 kB (new file) 🆕
build/assets/js/3969.********.js 4.03 kB +4.03 kB (new file) 🆕
build/assets/js/4087.********.js 48.5 kB +48.5 kB (new file) 🆕
build/assets/js/4201.********.js 31.2 kB +31.2 kB (new file) 🆕
build/assets/js/4774.********.js 16 kB +16 kB (new file) 🆕
build/assets/js/4854.********.js 24.4 kB +24.4 kB (new file) 🆕
build/assets/js/492.********.js 38.7 kB +38.7 kB (new file) 🆕
build/assets/js/4962.********.js 14.3 kB +14.3 kB (new file) 🆕
build/assets/js/4984.********.js 28.1 kB +28.1 kB (new file) 🆕
build/assets/js/5010.********.js 169 B +169 B (new file) 🆕
build/assets/js/5091.********.js 174 B +174 B (new file) 🆕
build/assets/js/5564.********.js 170 B +170 B (new file) 🆕
build/assets/js/5591.********.js 80.8 kB +80.8 kB (new file) 🆕
build/assets/js/5616.********.js 70.2 kB +70.2 kB (new file) 🆕
build/assets/js/6046.********.js 440 kB +440 kB (new file) 🆕
build/assets/js/6130.********.js 1.12 kB +1.12 kB (new file) 🆕
build/assets/js/6171.********.js 21.9 kB +21.9 kB (new file) 🆕
build/assets/js/631.********.js 495 B +495 B (new file) 🆕
build/assets/js/638.********.js 430 kB +430 kB (new file) 🆕
build/assets/js/6419.********.js 166 B +166 B (new file) 🆕
build/assets/js/6517.********.js 21.7 kB +21.7 kB (new file) 🆕
build/assets/js/6659.********.js 4.39 kB +4.39 kB (new file) 🆕
build/assets/js/6965.********.js 40.7 kB +40.7 kB (new file) 🆕
build/assets/js/7110.********.js 20.3 kB +20.3 kB (new file) 🆕
build/assets/js/7123.********.js 8.73 kB +8.73 kB (new file) 🆕
build/assets/js/7284.********.js 439 B +439 B (new file) 🆕
build/assets/js/740.********.js 164 B +164 B (new file) 🆕
build/assets/js/7441.********.js 8.21 kB +8.21 kB (new file) 🆕
build/assets/js/8152.********.js 113 B +113 B (new file) 🆕
build/assets/js/818.********.js 439 B +439 B (new file) 🆕
build/assets/js/8206.********.js 600 B +600 B (new file) 🆕
build/assets/js/8252.********.js 11.3 kB +11.3 kB (new file) 🆕
build/assets/js/8309.********.js 167 B +167 B (new file) 🆕
build/assets/js/8350.********.js 6.06 kB +6.06 kB (new file) 🆕
build/assets/js/8368.********.js 425 B +425 B (new file) 🆕
build/assets/js/8421.********.js 21.9 kB +21.9 kB (new file) 🆕
build/assets/js/8793.********.js 25.4 kB +25.4 kB (new file) 🆕
build/assets/js/8910.********.js 48.8 kB +48.8 kB (new file) 🆕
build/assets/js/9171.********.js 113 B +113 B (new file) 🆕
build/assets/js/9282.********.js 146 kB +146 kB (new file) 🆕
build/assets/js/934.********.js 71.5 kB +71.5 kB (new file) 🆕
build/assets/js/9779.********.js 62.9 kB +62.9 kB (new file) 🆕
build/assets/js/987.********.js 26.3 kB +26.3 kB (new file) 🆕
ℹ️ View Unchanged
Filename Size Change
.docusaurus/globalData.json 11.9 kB 0 B
build/404.html 15.5 kB 0 B
build/assets/css/styles.********.css 142 kB 0 B
build/assets/js/0058b4c6.********.js 4.26 kB +11 B (+0.26%)
build/assets/js/01a85c17.********.js 7.24 kB +2 B (+0.03%)
build/assets/js/073fbc7c.********.js 16.2 kB +8 B (+0.05%)
build/assets/js/09a4fe5a.********.js 68.4 kB -1 B (0%)
build/assets/js/0a6cf40a.********.js 37.7 kB +3 B (+0.01%)
build/assets/js/0fd216e9.********.js 8.96 kB +1 B (+0.01%)
build/assets/js/12cfd228.********.js 7.08 kB +3 B (+0.04%)
build/assets/js/14eb3368.********.js 9.72 kB -9 B (-0.09%)
build/assets/js/167d542a.********.js 12.1 kB +8 B (+0.07%)
build/assets/js/17896441.********.js 640 B +3 B (+0.47%)
build/assets/js/1b355a49.********.js 8.26 kB +1 B (+0.01%)
build/assets/js/1df93b7f.********.js 9.4 kB -19 B (-0.2%)
build/assets/js/1f391b9e.********.js 6.91 kB -17 B (-0.25%)
build/assets/js/221b35f7.********.js 12.2 kB -1 B (-0.01%)
build/assets/js/245d11de.********.js 56 kB +8 B (+0.01%)
build/assets/js/263b985f.********.js 33.9 kB -8 B (-0.02%)
build/assets/js/352f0e19.********.js 8.68 kB +7 B (+0.08%)
build/assets/js/35475145.********.js 461 B +11 B (+2.44%)
build/assets/js/36994c47.********.js 183 B +11 B (+6.4%) 🔍
build/assets/js/3894e54f.********.js 21 kB +1 B (0%)
build/assets/js/3a2db09e.********.js 253 B +11 B (+4.55%) 🔍
build/assets/js/3a9ef7ca.********.js 450 B +11 B (+2.51%)
build/assets/js/3dd168bd.********.js 18.3 kB -7 B (-0.04%)
build/assets/js/3fc333ae.********.js 30.7 kB -7 B (-0.02%)
build/assets/js/402c530c.********.js 469 B +11 B (+2.4%)
build/assets/js/40c845af.********.js 31.3 kB +3 B (+0.01%)
build/assets/js/4382960e.********.js 9.79 kB -3 B (-0.03%)
build/assets/js/446e416b.********.js 9.65 kB -3 B (-0.03%)
build/assets/js/47a5fc0a.********.js 184 B +11 B (+6.36%) 🔍
build/assets/js/4911.********.js 191 kB +9 B (0%)
build/assets/js/4edc808e.********.js 15 kB -6 B (-0.04%)
build/assets/js/4f649d07.********.js 3.83 kB +7 B (+0.18%)
build/assets/js/55b84506.********.js 12.1 kB +8 B (+0.07%)
build/assets/js/573f7f56.********.js 3.41 kB +8 B (+0.24%)
build/assets/js/57a8643e.********.js 14.3 kB -20 B (-0.14%)
build/assets/js/5c2e370e.********.js 497 B +11 B (+2.26%)
build/assets/js/5e95c892.********.js 357 B +8 B (+2.29%)
build/assets/js/621db11d.********.js 1.71 kB +5 B (+0.29%)
build/assets/js/635ad0e8.********.js 515 B +11 B (+2.18%)
build/assets/js/6561.********.js 5.85 kB +9 B (+0.15%)
build/assets/js/6875c492.********.js 10.3 kB -27 B (-0.26%)
build/assets/js/6be15ea1.********.js 9.38 kB +8 B (+0.09%)
build/assets/js/70442256.********.js 39 kB +4 B (+0.01%)
build/assets/js/78a4fd52.********.js 4.92 kB +8 B (+0.16%)
build/assets/js/79af6410.********.js 388 B +11 B (+2.92%)
build/assets/js/7bf4542e.********.js 18.2 kB +3 B (+0.02%)
build/assets/js/7c5c12ac.********.js 9.67 kB -3 B (-0.03%)
build/assets/js/814f3328.********.js 297 B +11 B (+3.85%)
build/assets/js/8357758b.********.js 19.5 kB -25 B (-0.13%)
build/assets/js/8ebcaa6c.********.js 18.3 kB +8 B (+0.04%)
build/assets/js/93c7665c.********.js 1.96 kB +9 B (+0.46%)
build/assets/js/945b49d0.********.js 13.7 kB +1 B (+0.01%)
build/assets/js/98822c48.********.js 12.9 kB +8 B (+0.06%)
build/assets/js/991ed628.********.js 17 kB -8 B (-0.05%)
build/assets/js/9b0b65a6.********.js 11.1 kB +3 B (+0.03%)
build/assets/js/9e4087bc.********.js 2.06 kB +4 B (+0.19%)
build/assets/js/a21c20db.********.js 40.5 kB -6 B (-0.01%)
build/assets/js/a6aa9e1f.********.js 7.93 kB -13 B (-0.16%)
build/assets/js/a7456010.********.js 184 B +11 B (+6.36%) 🔍
build/assets/js/a7bd4aaa.********.js 705 B +9 B (+1.29%)
build/assets/js/a821d7a1.********.js 14.4 kB -3 B (-0.02%)
build/assets/js/a94703ab.********.js 11.3 kB +7 B (+0.06%)
build/assets/js/aba21aa0.********.js 183 B +11 B (+6.4%) 🔍
build/assets/js/acecf23e.********.js 203 B +11 B (+5.73%) 🔍
build/assets/js/b14e0f74.********.js 15.3 kB +1 B (+0.01%)
build/assets/js/b28a5f0c.********.js 20.2 kB -8 B (-0.04%)
build/assets/js/b4616e61.********.js 18 kB +1 B (+0.01%)
build/assets/js/b4645c50.********.js 32.2 kB +8 B (+0.02%)
build/assets/js/bc6be8dd.********.js 449 B +11 B (+2.51%)
build/assets/js/bc7db166.********.js 21.8 kB -4 B (-0.02%)
build/assets/js/c141421f.********.js 183 B +11 B (+6.4%) 🔍
build/assets/js/c15d9823.********.js 261 B +11 B (+4.4%)
build/assets/js/c7b90d82.********.js 23.1 kB +8 B (+0.03%)
build/assets/js/ccc49370.********.js 13.3 kB -25 B (-0.19%)
build/assets/js/cf55cfec.********.js 469 B +11 B (+2.4%)
build/assets/js/d2436a2b.********.js 4.53 kB +11 B (+0.24%)
build/assets/js/d5c68bbd.********.js 42.3 kB -7 B (-0.02%)
build/assets/js/d6cb878b.********.js 483 B +11 B (+2.33%)
build/assets/js/db8d5f16.********.js 11.1 kB +1 B (+0.01%)
build/assets/js/e0719818.********.js 185 B +11 B (+6.32%) 🔍
build/assets/js/e76149f9.********.js 9.39 kB +11 B (+0.12%)
build/assets/js/e9ebadb9.********.js 12.6 kB +8 B (+0.06%)
build/assets/js/ea82e367.********.js 13.1 kB -2 B (-0.02%)
build/assets/js/eb7ebca6.********.js 34.4 kB +8 B (+0.02%)
build/assets/js/ebed0d07.********.js 1.89 kB +9 B (+0.48%)
build/assets/js/ec281f2e.********.js 16.2 kB +8 B (+0.05%)
build/assets/js/eecb7248.********.js 2.94 kB +8 B (+0.27%)
build/assets/js/ef8b811a.********.js 324 B +11 B (+3.51%)
build/assets/js/f077d5db.********.js 32.8 kB -4 B (-0.01%)
build/assets/js/f1028ce8.********.js 476 B +11 B (+2.37%)
build/assets/js/f13553a8.********.js 447 B +11 B (+2.52%)
build/assets/js/f1b373af.********.js 379 B +11 B (+2.99%)
build/assets/js/f81c1134.********.js 5.29 kB +11 B (+0.21%)
build/assets/js/fd2064b2.********.js 11 kB +1 B (+0.01%)
build/assets/js/fedb50c8.********.js 44.3 kB +1 B (0%)
build/blog.html 20.3 kB 0 B
build/blog/archive.html 16 kB 0 B
build/blog/authors.html 16.6 kB 0 B
build/blog/feature-rich-plugin-manager.html 25.3 kB 0 B
build/blog/tags.html 16.5 kB 0 B
build/blog/tags/github.html 19.3 kB 0 B
build/blog/tags/zsh.html 19.2 kB 0 B
build/community.html 21.6 kB 0 B
build/community/category/-collection.html 25.6 kB 0 B
build/community/category/-gallery-of-invocations.html 21.7 kB 0 B
build/community/category/-roadmap.html 22.3 kB 0 B
build/community/category/-zsh-users-guide.html 21.6 kB 0 B
build/community/contributors.html 30.7 kB 0 B
build/community/gallery/collection.html 28.8 kB 0 B
build/community/gallery/collection/completions.html 94.8 kB 0 B
build/community/gallery/collection/plugins.html 105 kB 0 B
build/community/gallery/collection/programs.html 236 kB 0 B
build/community/gallery/collection/services.html 30 kB 0 B
build/community/gallery/collection/snippets.html 31 kB 0 B
build/community/gallery/collection/themes.html 80.2 kB 0 B
build/community/zsh_guide/roadmap/expansion.html 39.5 kB 0 B
build/community/zsh_handbook.html 180 kB 0 B
build/community/zsh_plugin_standard.html 121 kB 0 B
build/docs.html 30.5 kB 0 B
build/docs/category/-getting-started.html 22 kB 0 B
build/docs/category/-guides.html 22.7 kB 0 B
build/docs/category/️-syntax.html 23.9 kB 0 B
build/docs/code.html 24.9 kB 0 B
build/docs/getting_started/installation.html 73.2 kB 0 B
build/docs/getting_started/migration.html 126 kB 0 B
build/docs/getting_started/overview.html 123 kB 0 B
build/docs/guides/benchmark.html 64.6 kB 0 B
build/docs/guides/commands.html 99.2 kB 0 B
build/docs/guides/customization.html 97.5 kB 0 B
build/docs/guides/syntax/bindkey.html 47.1 kB 0 B
build/docs/guides/syntax/for.html 80.5 kB 0 B
build/docs/guides/syntax/ice-modifiers.html 54.2 kB 0 B
build/docs/guides/syntax/standard.html 179 kB 0 B
build/ecosystem.html 21.5 kB 0 B
build/ecosystem/annexes/bin-gem-node.html 150 kB 0 B
build/ecosystem/annexes/default-ice.html 37.6 kB 0 B
build/ecosystem/annexes/eval.html 46.9 kB 0 B
build/ecosystem/annexes/linkbin.html 38.8 kB 0 B
build/ecosystem/annexes/meta-plugins.html 45.9 kB 0 B
build/ecosystem/annexes/overview.html 70.7 kB 0 B
build/ecosystem/annexes/patch-dl.html 34.6 kB 0 B
build/ecosystem/annexes/readurl.html 48.6 kB 0 B
build/ecosystem/annexes/rust.html 54.3 kB 0 B
build/ecosystem/annexes/submods.html 30.4 kB 0 B
build/ecosystem/annexes/unscope.html 52.8 kB 0 B
build/ecosystem/category/-annexes.html 26.6 kB 0 B
build/ecosystem/category/-packages.html 21.6 kB 0 B
build/ecosystem/category/️-plugins.html 30.2 kB 0 B
build/ecosystem/packages/synopsis.html 42.6 kB 0 B
build/ecosystem/packages/usage.html 103 kB 0 B
build/ecosystem/plugins/diff-so-fancy.html 52.1 kB 0 B
build/ecosystem/plugins/f-sy-h.html 137 kB 0 B
build/ecosystem/plugins/h-s-mw.html 62.4 kB 0 B
build/ecosystem/plugins/zbrowse.html 33.9 kB 0 B
build/ecosystem/plugins/zconvey.html 39 kB 0 B
build/ecosystem/plugins/zi-console.html 42.1 kB 0 B
build/ecosystem/plugins/zprompts.html 35.9 kB 0 B
build/ecosystem/plugins/zsh-cmd-architect.html 44.9 kB 0 B
build/ecosystem/plugins/zsh-editing-workbench.html 38.3 kB 0 B
build/ecosystem/plugins/zsh-modules.html 45.9 kB 0 B
build/ecosystem/plugins/zsh-navigation-tools.html 91.3 kB 0 B
build/ecosystem/plugins/zsh-select.html 46.1 kB 0 B
build/ecosystem/plugins/zsh-unique-id.html 38.9 kB 0 B
build/ecosystem/plugins/zui.html 221 kB 0 B
build/ecosystem/plugins/zzcomplete.html 35.8 kB 0 B
build/index.html 19.6 kB 0 B
build/legal/CODE_OF_CONDUCT.html 25.2 kB 0 B
build/legal/PRIVACY.html 37.1 kB 0 B
build/search.html 23.8 kB 0 B

compressed-size-action

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.

0 participants