Skip to content

chore(deps): update all non-major dependencies #582

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 9, 2025

This PR contains the following updates:

Package Change Age Confidence
@antfu/eslint-config 4.13.2 -> 4.19.0 age confidence
@types/estree (source) 1.0.7 -> 1.0.8 age confidence
@types/node (source) 22.15.29 -> 22.16.5 age confidence
acorn 8.14.1 -> 8.15.0 age confidence
bumpp 10.1.1 -> 10.2.1 age confidence
expect-type 1.2.1 -> 1.2.2 age confidence
pnpm (source) 10.11.1 -> 10.13.1 age confidence
rollup (source) 4.41.1 -> 4.46.1 age confidence
unbuild 3.5.0 -> 3.6.0 age confidence

Release Notes

antfu/eslint-config (@​antfu/eslint-config)

v4.19.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v4.18.0

Compare Source

   🚀 Features
    View changes on GitHub

v4.17.0

Compare Source

   🚀 Features
   🐞 Bug Fixes
    View changes on GitHub

v4.16.2

Compare Source

No significant changes

    View changes on GitHub

v4.16.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.16.0

Compare Source

   🚀 Features
    View changes on GitHub

v4.15.0

Compare Source

   🚀 Features
    View changes on GitHub

v4.14.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.14.0

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v4.13.3

Compare Source

No significant changes

    View changes on GitHub
acornjs/acorn (acorn)

v8.15.0

Compare Source

antfu-collective/bumpp (bumpp)

v10.2.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v10.2.0

Compare Source

   🚀 Features
    View changes on GitHub
mmkal/expect-type (expect-type)

v1.2.2

Compare Source


pnpm/pnpm (pnpm)

v10.13.1

Compare Source

Patch Changes
  • Run user defined pnpmfiles after pnpmfiles of plugins.

v10.13.0

Compare Source

Minor Changes
  • Added the possibility to load multiple pnpmfiles. The pnpmfile setting can now accept a list of pnpmfile locations #​9702.

  • pnpm will now automatically load the pnpmfile.cjs file from any config dependency named @pnpm/plugin-* or pnpm-plugin-* #​9729.

    The order in which config dependencies are initialized should not matter — they are initialized in alphabetical order. If a specific order is needed, the paths to the pnpmfile.cjs files in the config dependencies can be explicitly listed using the pnpmfile setting in pnpm-workspace.yaml.

Patch Changes
  • When patching dependencies installed via pkg.pr.new, treat them as Git tarball URLs #​9694.
  • Prevent conflicts between local projects' config and the global config in dangerouslyAllowAllBuilds, onlyBuiltDependencies, onlyBuiltDependenciesFile, and neverBuiltDependencies #​9628.
  • Sort keys in pnpm-workspace.yaml with deep #​9701.
  • The pnpm rebuild command should not add pkgs included in ignoredBuiltDependencies to ignoredBuilds in node_modules/.modules.yaml #​9338.
  • Replaced shell-quote with shlex for quoting command arguments #​9381.

v10.12.4

Compare Source

Patch Changes

v10.12.3

Compare Source

Patch Changes
  • Restore hoisting of optional peer dependencies when installing with an outdated lockfile.
    Regression introduced in v10.12.2 by #​9648; resolves #​9685.

v10.12.2

Compare Source

Patch Changes
  • Fixed hoisting with enableGlobalVirtualStore set to true #​9648.
  • Fix the --help and -h flags not working as expected for the pnpm create command.
  • The dependency package path output by the pnpm licenses list --json command is incorrect.
  • Fix a bug in which pnpm deploy fails due to overridden dependencies having peer dependencies causing ERR_PNPM_OUTDATED_LOCKFILE #​9595.

v10.12.1

Minor Changes
  • Experimental. Added support for global virtual stores. When enabled, node_modules contains only symlinks to a central virtual store, rather to node_modules/.pnpm. By default, this central store is located at <store-path>/links (you can find the store path by running pnpm store path).

    In the central virtual store, each package is hard linked into a directory whose name is the hash of its dependency graph. This allows multiple projects on the system to symlink shared dependencies from this central location, significantly improving installation speed when a warm cache is available.

    This is conceptually similar to how NixOS manages packages, using dependency graph hashes to create isolated and reusable package directories.

    To enable the global virtual store, set enableGlobalVirtualStore: true in your root pnpm-workspace.yaml, or globally via:

    pnpm config -g set enable-global-virtual-store true

    NOTE: In CI environments, where caches are typically cold, this setting may slow down installation. pnpm automatically disables the global virtual store when running in CI.

    Related PR: #​8190

  • The pnpm update command now supports updating catalog: protocol dependencies and writes new specifiers to pnpm-workspace.yaml.
  • Added two new CLI options (--save-catalog and --save-catalog-name=<name>) to pnpm add to save new dependencies as catalog entries. catalog: or catalog:<name> will be added to package.json and the package specifier will be added to the catalogs or catalog[<name>] object in pnpm-workspace.yaml #​9425.
  • Semi-breaking. The keys used for side-effects caches have changed. If you have a side-effects cache generated by a previous version of pnpm, the new version will not use it and will create a new cache instead #​9605.
  • Added a new setting called ci for explicitly telling pnpm if the current environment is a CI or not.
Patch Changes
  • Sort versions printed by pnpm patch using semantic versioning rules.
  • Improve the way the error message displays mismatched specifiers. Show differences instead of 2 whole objects #​9598.
  • Revert #​9574 to fix a regression #​9596.
rollup/rollup (rollup)

v4.46.1

Compare Source

2025-07-28

Bug Fixes
  • Do not fail when using the in operator on external namespaces (#​6036)
Pull Requests

v4.46.0

Compare Source

2025-07-27

Features
  • Optimize in checks on namespaces to keep them treeshake-able (#​6029)
Pull Requests

v4.45.3

Compare Source

2025-07-26

Bug Fixes
  • Do not fail build if a const is reassigned but warn instead (#​6020)
  • Fail with a helpful error message if an exported binding is not defined (#​6023)
Pull Requests

v4.45.1

Compare Source

2025-07-15

Bug Fixes
  • Resolve crash when using certain conditional expressions (#​6009)
Pull Requests

v4.45.0

Compare Source

2025-07-12

Features
  • Improve tree-shaking when both branches of a conditional expression return the same boolean value (#​6000)
  • In environments that support both CJS and ESM, prefer the ESM build of Rollup (#​6005)
Bug Fixes
  • Ensure static blocks do not prevent tree-shaking if they access this (#​6001)
Pull Requests

v4.44.2

Compare Source

2025-07-04

Bug Fixes
  • Correctly handle @__PURE__ annotations after new keyword (#​5998)
  • Generate correct source mapping for closing braces of block statements (#​5999)
Pull Requests

v4.44.1

Compare Source

2025-06-26

Bug Fixes
  • Reinstate maxParallelFileOps limit of 1000 to resolve the issue for some (#​5992)
Pull Requests

v4.44.0

Compare Source

2025-06-19

Features
  • Remove limit on maxParallelFileOps as this could break watch mode with the commonjs plugin (#​5986)
Bug Fixes
  • Provide better source mappings when coarse intermediate maps are used (#​5985)
Pull Requests

v4.43.0

Compare Source

2025-06-11

Features
  • Provide new fs option and this.fs API to replace file system (#​5944)
Pull Requests

v4.42.0

Compare Source

2025-06-06

Features
  • Add option to allow the input to be located in the output in watch mode (#​5966)
Pull Requests

v4.41.2

Compare Source

2025-06-06

Bug Fixes
  • Detect named export usages in dynamic imports with then and non-arrow function expressions (#​5977)
  • Do not replace usages of constant variables with their values for readability (#​5968)
Pull Requests
unjs/unbuild (unbuild)

v3.6.0

Compare Source

compare changes

🚀 Enhancements
  • Support absoluteJitiPath for stub mode (#​542)
🩹 Fixes
  • types: Improve type safety (#​516)
📖 Documentation
  • Remove wrong jsdoc for dts type (#​540)
🏡 Chore
✅ Tests
  • Only include src for coverage report (#​525)
❤️ Contributors

Configuration

📅 Schedule: Branch creation - "on Monday" (UTC), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

vercel bot commented Jun 9, 2025

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
magic-regexp-docs ❌ Failed (Inspect) Jul 29, 2025 6:30am

Copy link

github-actions bot commented Jun 9, 2025

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 358 359 ▲ (+0.28%)
Lines 156336 157117 ▲ (+0.50%)
Identifiers 153652 154431 ▲ (+0.50%)
Symbols 259483 260018 ▲ (+0.21%)
Types 53734 53851 ▲ (+0.22%)
Instantiations 623140 623199 ▲ (+0.01%)
Memory used 259017K 289868K ▲ (+10.64%)
I/O read 0.03s 0.03s ± (0.00%)
I/O write 0s 0s ± (0.00%)
Parse time 0.93s 0.96s ± (+3.12%)
Bind time 0.41s 0.4s ± (-2.50%)
Check time 2.03s 2.08s ± (+2.40%)
Emit time 0.1s 0.1s ± (0.00%)
Total time 3.49s 3.55s ± (+1.69%)

Copy link

codspeed-hq bot commented Jun 9, 2025

CodSpeed Performance Report

Merging #582 will not alter performance

Comparing renovate/all-minor-patch (2b89661) with main (9966ce8)

Summary

✅ 6 untouched benchmarks

Copy link

github-actions bot commented Jun 9, 2025

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 357 358 ▲ (+0.28%)
Lines 156335 157116 ▲ (+0.50%)
Identifiers 153659 154438 ▲ (+0.50%)
Symbols 259492 260027 ▲ (+0.21%)
Types 53762 53879 ▲ (+0.22%)
Instantiations 623189 623248 ▲ (+0.01%)
Memory used 267903K 263954K ▼ (-1.50%)
I/O read 0.03s 0.03s ± (0.00%)
I/O write 0s 0s ± (0.00%)
Parse time 1s 0.98s ± (-2.04%)
Bind time 0.41s 0.41s ± (0.00%)
Check time 2.07s 2.09s ± (+0.96%)
Emit time 0.1s 0.1s ± (0.00%)
Total time 3.58s 3.59s ± (+0.28%)

Copy link

github-actions bot commented Jun 9, 2025

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 357 358 ▲ (+0.28%)
Lines 156335 157116 ▲ (+0.50%)
Identifiers 153654 154433 ▲ (+0.50%)
Symbols 259402 259937 ▲ (+0.21%)
Types 53705 53822 ▲ (+0.22%)
Instantiations 623086 623145 ▲ (+0.01%)
Memory used 288601K 260042K ▼ (-10.98%)
I/O read 0.03s 0.02s ▼ (-50.00%)
I/O write 0s 0s ± (0.00%)
Parse time 0.95s 0.98s ± (+3.06%)
Bind time 0.42s 0.42s ± (0.00%)
Check time 2.13s 2.12s ± (-0.47%)
Emit time 0.12s 0.11s ± (-9.09%)
Total time 3.61s 3.63s ± (+0.55%)

Copy link

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 357 358 ▲ (+0.28%)
Lines 156335 157104 ▲ (+0.49%)
Identifiers 153654 154433 ▲ (+0.50%)
Symbols 259402 259937 ▲ (+0.21%)
Types 53705 53822 ▲ (+0.22%)
Instantiations 623086 623145 ▲ (+0.01%)
Memory used 258800K 297279K ▲ (+12.94%)
I/O read 0.03s 0.02s ▼ (-50.00%)
I/O write 0s 0s ± (0.00%)
Parse time 0.94s 0.95s ± (+1.05%)
Bind time 0.41s 0.41s ± (0.00%)
Check time 2.04s 2.07s ± (+1.45%)
Emit time 0.1s 0.1s ± (0.00%)
Total time 3.49s 3.52s ± (+0.85%)

Copy link

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 357 358 ▲ (+0.28%)
Lines 156335 157180 ▲ (+0.54%)
Identifiers 153654 154566 ▲ (+0.59%)
Symbols 259402 260026 ▲ (+0.24%)
Types 53705 53822 ▲ (+0.22%)
Instantiations 623086 623145 ▲ (+0.01%)
Memory used 267212K 296534K ▲ (+9.89%)
I/O read 0.02s 0.03s ▲ (+33.33%)
I/O write 0s 0s ± (0.00%)
Parse time 0.96s 0.98s ± (+2.04%)
Bind time 0.45s 0.41s ± (-9.76%)
Check time 2.08s 2.12s ± (+1.89%)
Emit time 0.1s 0.1s ± (0.00%)
Total time 3.6s 3.62s ± (+0.55%)

Copy link

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 356 357 ▲ (+0.28%)
Lines 155659 156504 ▲ (+0.54%)
Identifiers 153089 154001 ▲ (+0.59%)
Symbols 258936 259560 ▲ (+0.24%)
Types 53705 53822 ▲ (+0.22%)
Instantiations 623086 623145 ▲ (+0.01%)
Memory used 268522K 289519K ▲ (+7.25%)
I/O read 0.02s 0.02s ± (0.00%)
I/O write 0s 0s ± (0.00%)
Parse time 0.95s 0.99s ± (+4.04%)
Bind time 0.4s 0.4s ± (0.00%)
Check time 2.08s 2.08s ± (0.00%)
Emit time 0.1s 0.1s ± (0.00%)
Total time 3.53s 3.58s ± (+1.40%)

Copy link

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 356 357 ▲ (+0.28%)
Lines 155659 156504 ▲ (+0.54%)
Identifiers 153089 154001 ▲ (+0.59%)
Symbols 258936 259560 ▲ (+0.24%)
Types 53705 53822 ▲ (+0.22%)
Instantiations 623086 623145 ▲ (+0.01%)
Memory used 257694K 293967K ▲ (+12.34%)
I/O read 0.02s 0.02s ± (0.00%)
I/O write 0s 0s ± (0.00%)
Parse time 0.97s 0.98s ± (+1.02%)
Bind time 0.41s 0.46s ± (+10.87%)
Check time 2.05s 2.09s ± (+1.91%)
Emit time 0.1s 0.1s ± (0.00%)
Total time 3.53s 3.62s ± (+2.49%)

Copy link

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 356 357 ▲ (+0.28%)
Lines 155659 156505 ▲ (+0.54%)
Identifiers 153089 154005 ▲ (+0.59%)
Symbols 258936 259561 ▲ (+0.24%)
Types 53705 53822 ▲ (+0.22%)
Instantiations 623086 623145 ▲ (+0.01%)
Memory used 291216K 289803K ▼ (-0.49%)
I/O read 0.02s 0.02s ± (0.00%)
I/O write 0s 0s ± (0.00%)
Parse time 0.99s 1s ± (+1.00%)
Bind time 0.47s 0.41s ± (-14.63%)
Check time 2.16s 2.18s ± (+0.92%)
Emit time 0.11s 0.12s ± (+8.33%)
Total time 3.73s 3.71s ± (-0.54%)

Copy link

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 366 367 ▲ (+0.27%)
Lines 155670 157108 ▲ (+0.92%)
Identifiers 153783 154608 ▲ (+0.53%)
Symbols 259484 260146 ▲ (+0.25%)
Types 53706 53713 ▲ (+0.01%)
Instantiations 623086 623086 ± (0.00%)
Memory used 262882K 288517K ▲ (+8.89%)
I/O read 0.02s 0.02s ± (0.00%)
I/O write 0s 0s ± (0.00%)
Parse time 0.94s 1.04s ± (+9.62%)
Bind time 0.39s 0.41s ± (+4.88%)
Check time 2.02s 2.09s ± (+3.35%)
Emit time 0.11s 0.11s ± (0.00%)
Total time 3.47s 3.64s ± (+4.67%)

Copy link

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 367 367 ± (0.00%)
Lines 156387 157108 ▲ (+0.46%)
Identifiers 154358 154608 ▲ (+0.16%)
Symbols 259959 260146 ▲ (+0.07%)
Types 53706 53713 ▲ (+0.01%)
Instantiations 623086 623086 ± (0.00%)
Memory used 295292K 267948K ▼ (-10.20%)
I/O read 0.02s 0.03s ▲ (+33.33%)
I/O write 0s 0s ± (0.00%)
Parse time 0.89s 0.96s ± (+7.29%)
Bind time 0.4s 0.34s ± (-17.65%)
Check time 1.94s 1.96s ± (+1.02%)
Emit time 0.1s 0.1s ± (0.00%)
Total time 3.34s 3.36s ± (+0.60%)

Copy link

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 367 367 ± (0.00%)
Lines 156387 157108 ▲ (+0.46%)
Identifiers 154358 154608 ▲ (+0.16%)
Symbols 259959 260146 ▲ (+0.07%)
Types 53706 53713 ▲ (+0.01%)
Instantiations 623086 623086 ± (0.00%)
Memory used 263116K 297024K ▲ (+11.42%)
I/O read 0.02s 0.02s ± (0.00%)
I/O write 0s 0s ± (0.00%)
Parse time 0.91s 0.95s ± (+4.21%)
Bind time 0.4s 0.39s ± (-2.56%)
Check time 1.96s 1.96s ± (0.00%)
Emit time 0.11s 0.1s ± (-10.00%)
Total time 3.38s 3.41s ± (+0.88%)

Copy link

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 366 366 ± (0.00%)
Lines 155840 156411 ▲ (+0.37%)
Identifiers 153908 154095 ▲ (+0.12%)
Symbols 259543 259700 ▲ (+0.06%)
Types 53706 53713 ▲ (+0.01%)
Instantiations 623086 623086 ± (0.00%)
Memory used 262890K 288440K ▲ (+8.86%)
I/O read 0.02s 0.03s ▲ (+33.33%)
I/O write 0s 0s ± (0.00%)
Parse time 0.9s 0.93s ± (+3.23%)
Bind time 0.45s 0.41s ± (-9.76%)
Check time 1.87s 1.94s ± (+3.61%)
Emit time 0.11s 0.1s ± (-10.00%)
Total time 3.33s 3.38s ± (+1.48%)

Copy link

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 366 366 ± (0.00%)
Lines 155841 156412 ▲ (+0.37%)
Identifiers 154085 154272 ▲ (+0.12%)
Symbols 259544 259701 ▲ (+0.06%)
Types 53706 53713 ▲ (+0.01%)
Instantiations 623086 623086 ± (0.00%)
Memory used 257484K 263566K ▲ (+2.31%)
I/O read 0.02s 0.03s ▲ (+33.33%)
I/O write 0s 0s ± (0.00%)
Parse time 0.89s 0.95s ± (+6.32%)
Bind time 0.39s 0.4s ± (+2.50%)
Check time 1.91s 1.92s ± (+0.52%)
Emit time 0.11s 0.1s ± (-10.00%)
Total time 3.31s 3.37s ± (+1.78%)

Copy link

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 366 366 ± (0.00%)
Lines 155841 156412 ▲ (+0.37%)
Identifiers 154085 154272 ▲ (+0.12%)
Symbols 259544 259701 ▲ (+0.06%)
Types 53706 53713 ▲ (+0.01%)
Instantiations 623086 623086 ± (0.00%)
Memory used 263046K 288632K ▲ (+8.86%)
I/O read 0.02s 0.03s ▲ (+33.33%)
I/O write 0s 0s ± (0.00%)
Parse time 0.96s 0.95s ± (-1.05%)
Bind time 0.39s 0.39s ± (0.00%)
Check time 1.94s 1.98s ± (+2.02%)
Emit time 0.1s 0.11s ± (+9.09%)
Total time 3.39s 3.43s ± (+1.17%)

Copy link

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 366 366 ± (0.00%)
Lines 155841 156412 ▲ (+0.37%)
Identifiers 154085 154272 ▲ (+0.12%)
Symbols 259544 259701 ▲ (+0.06%)
Types 53706 53713 ▲ (+0.01%)
Instantiations 623086 623086 ± (0.00%)
Memory used 288035K 287915K ▼ (-0.04%)
I/O read 0.02s 0.02s ± (0.00%)
I/O write 0s 0s ± (0.00%)
Parse time 0.91s 0.95s ± (+4.21%)
Bind time 0.4s 0.39s ± (-2.56%)
Check time 2.08s 1.99s ± (-4.52%)
Emit time 0.11s 0.1s ± (-10.00%)
Total time 3.51s 3.44s ± (-2.03%)

Copy link

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 366 366 ± (0.00%)
Lines 155841 156412 ▲ (+0.37%)
Identifiers 154085 154272 ▲ (+0.12%)
Symbols 259544 259701 ▲ (+0.06%)
Types 53706 53713 ▲ (+0.01%)
Instantiations 623086 623086 ± (0.00%)
Memory used 287153K 260120K ▼ (-10.39%)
I/O read 0.03s 0.02s ▼ (-50.00%)
I/O write 0s 0s ± (0.00%)
Parse time 0.92s 0.92s ± (0.00%)
Bind time 0.4s 0.36s ± (-11.11%)
Check time 1.98s 2.01s ± (+1.49%)
Emit time 0.11s 0.11s ± (0.00%)
Total time 3.41s 3.4s ± (-0.29%)

Copy link

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 366 366 ± (0.00%)
Lines 155841 156412 ▲ (+0.37%)
Identifiers 154085 154272 ▲ (+0.12%)
Symbols 259544 259701 ▲ (+0.06%)
Types 53706 53713 ▲ (+0.01%)
Instantiations 623086 623086 ± (0.00%)
Memory used 296815K 288087K ▼ (-3.03%)
I/O read 0.02s 0.02s ± (0.00%)
I/O write 0s 0s ± (0.00%)
Parse time 0.92s 0.93s ± (+1.08%)
Bind time 0.39s 0.36s ± (-8.33%)
Check time 1.95s 1.99s ± (+2.01%)
Emit time 0.1s 0.11s ± (+9.09%)
Total time 3.37s 3.39s ± (+0.59%)

@renovate renovate bot force-pushed the renovate/all-minor-patch branch from fc2fd77 to 2b89661 Compare July 29, 2025 06:29
Copy link

Diagnostics Comparison:

Click to expand
Metric Previous New Status
Files 366 366 ± (0.00%)
Lines 155841 156412 ▲ (+0.37%)
Identifiers 154085 154272 ▲ (+0.12%)
Symbols 259544 259701 ▲ (+0.06%)
Types 53706 53713 ▲ (+0.01%)
Instantiations 623086 623086 ± (0.00%)
Memory used 257747K 263725K ▲ (+2.27%)
I/O read 0.02s 0.03s ▲ (+33.33%)
I/O write 0s 0s ± (0.00%)
Parse time 0.91s 0.95s ± (+4.21%)
Bind time 0.41s 0.35s ± (-17.14%)
Check time 1.97s 1.99s ± (+1.01%)
Emit time 0.11s 0.1s ± (-10.00%)
Total time 3.4s 3.39s ± (-0.29%)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants