[PR #7350] [MERGED] trim down some unused/unnecessary dependencies #14156

Closed
opened 2026-04-10 22:14:43 -05:00 by GiteaMirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/actualbudget/actual/pull/7350
Author: @matt-fidd
Created: 4/1/2026
Status: Merged
Merged: 4/5/2026
Merged by: @matt-fidd

Base: masterHead: trim-deps


📝 Commits (10+)

  • 221ed52 fix github actions inconsistencies
  • d8fc249 fix pinning of transitive deps in eslint-plugin
  • 68577ba drop use of node-fetch in api
  • f2e6f9b drop md5 dependency in favour of node:crypto
  • b23e903 drop slash
  • cd498e0 drop unused top level packages
  • b155836 add note about node-polyfills warning
  • 6b74015 remove unused deps from desktop-client
  • 8a65af9 drop pegjs types
  • 4d64b00 note

📊 Changes

14 files changed (+28 additions, -275 deletions)

View changed files

📝 .github/workflows/build.yml (+3 -3)
📝 .github/workflows/size-compare.yml (+2 -2)
📝 package.json (+0 -4)
📝 packages/api/index.ts (+0 -13)
📝 packages/api/package.json (+0 -1)
📝 packages/desktop-client/package.json (+0 -2)
📝 packages/docs/docs/api/index.md (+1 -1)
📝 packages/eslint-plugin-actual/package.json (+0 -6)
📝 packages/loot-core/package.json (+1 -4)
📝 packages/loot-core/src/server/importers/ynab4.ts (+1 -2)
📝 packages/loot-core/src/server/update.ts (+2 -2)
📝 packages/loot-core/vite.config.ts (+1 -0)
upcoming-release-notes/7350.md (+6 -0)
📝 yarn.lock (+11 -235)

📄 Description

Description

The work that goes into updating dependencies every month is measured in hours, it takes a long time to check the release notes of all dependencies, bump, test etc... I'd really like to slim that list down, and at the same time, lessen our exposure to supply chain attacks and reduce the app size.

The compare sizes results below look promising, the increase in desktop-client is because of a new locale being added

Here's a PR of quick wins

Dependency Package Note
requireindex eslint-plugin-actual Unused
loupe eslint-plugin-actual Pinned vitest 3.x internal
tinyspy eslint-plugin-actual Pinned vitest 3.x internal
strip-literal eslint-plugin-actual Pinned vitest 3.x internal
baseline-browser-mapping root Unused
source-map-support root Unused
node-jq root Unused apart from in a yarn script, bundles it's own binary in so is over 1MB when pulled, if people want it they should install it on their device through their normal package manager
slash loot-core Replaced with our own implementation (for reference: https://github.com/sindresorhus/slash/blob/main/index.js)
md5 loot-core Replaced with node:crypto
@types/pegjs loot-core We use peggy now, they ship their own types
node-fetch api Replaced with native fetch
prop-types desktop-client Unused
memoize-one desktop-client Unused - only used in loot-core

N/A

Testing

Built all packages, ran server and client together, CI should pass

Checklist

  • Release notes added (see link above)
  • No obvious regressions in affected areas
  • Self-review has been performed - I understand what each change in the code does and why it is needed

Bundle Stats

Bundle Files count Total bundle size % Changed
desktop-client 27 → 28 12.09 MB → 12.17 MB (+81.28 kB) +0.66%
loot-core 1 4.83 MB → 4.82 MB (-9.03 kB) -0.18%
api 4 → 1 4.06 MB → 3.83 MB (-228.71 kB) -5.50%
cli 1 7.88 MB 0%
View detailed bundle stats

desktop-client

Total

Files count Total bundle size % Changed
27 → 28 12.09 MB → 12.17 MB (+81.28 kB) +0.66%
Changeset
File Δ Size
locale/zh-Hans.json 🆕 +81.33 kB 0 B → 81.33 kB
src/languages.ts 📈 +109 B (+6.91%) 1.54 kB → 1.65 kB
package.json 📉 -52 B (-1.58%) 3.22 kB → 3.17 kB
View detailed bundle breakdown

Added

Asset File Size % Changed
static/js/zh-Hans.js 0 B → 81.33 kB (+81.33 kB) -

Removed
No assets were removed

Bigger
No assets were bigger

Smaller

Asset File Size % Changed
static/js/index.js 3.23 MB → 3.23 MB (-52 B) -0.00%

Unchanged

Asset File Size % Changed
static/js/BackgroundImage.js 119.98 kB 0%
static/js/FormulaEditor.js 846.44 kB 0%
static/js/ReportRouter.js 1.02 MB 0%
static/js/TransactionList.js 81.29 kB 0%
static/js/ca.js 182.91 kB 0%
static/js/da.js 104.66 kB 0%
static/js/de.js 174.79 kB 0%
static/js/en-GB.js 7.16 kB 0%
static/js/en.js 170.76 kB 0%
static/js/es.js 182.18 kB 0%
static/js/fr.js 177.47 kB 0%
static/js/indexeddb-main-thread-worker-e59fee74.js 13.46 kB 0%
static/js/it.js 166.25 kB 0%
static/js/narrow.js 354.5 kB 0%
static/js/nb-NO.js 152.2 kB 0%
static/js/nl.js 108.93 kB 0%
static/js/pl.js 88.34 kB 0%
static/js/pt-BR.js 177.84 kB 0%
static/js/resize-observer.js 18.03 kB 0%
static/js/sv.js 80.58 kB 0%
static/js/th.js 179.94 kB 0%
static/js/theme.js 30.68 kB 0%
static/js/uk.js 213.14 kB 0%
static/js/useTransactionBatchActions.js 4.29 MB 0%
static/js/wide.js 418 B 0%
static/js/workbox-window.prod.es5.js 7.28 kB 0%

loot-core

Total

Files count Total bundle size % Changed
1 4.83 MB → 4.82 MB (-9.03 kB) -0.18%
Changeset
File Δ Size
home/runner/work/actual/actual/packages/loot-core/src/server/update.ts 📈 +45 B (+7.19%) 626 B → 671 B
home/runner/work/actual/actual/packages/loot-core/src/server/importers/ynab4.ts 📈 +13 B (+0.14%) 9.35 kB → 9.36 kB
home/runner/work/actual/actual/packages/loot-core/migrations/1632571489012_remove_cache.js 📈 +3 B (+0.10%) 3.03 kB → 3.03 kB
node_modules/i18next/dist/esm/i18next.js 📉 -4 B (-0.01%) 74.53 kB → 74.53 kB
node_modules/pbkdf2/lib/sync-browser.js 📉 -2 B (-0.06%) 3.09 kB → 3.09 kB
node_modules/create-hmac/browser.js 📉 -2 B (-0.12%) 1.64 kB → 1.64 kB
node_modules/create-hash/md5.js 📉 -2 B (-0.81%) 247 B → 245 B
node_modules/md5/md5.js 🔥 -5.4 kB (-100%) 5.4 kB → 0 B
node_modules/crypt/crypt.js 🔥 -2.23 kB (-100%) 2.23 kB → 0 B
node_modules/charenc/charenc.js 🔥 -763 B (-100%) 763 B → 0 B
node_modules/is-buffer/index.js 🔥 -546 B (-100%) 546 B → 0 B
node_modules/slash/index.js 🔥 -169 B (-100%) 169 B → 0 B
View detailed bundle breakdown

Added

Asset File Size % Changed
kcab.worker.CA_4ekI5.js 0 B → 4.82 MB (+4.82 MB) -

Removed

Asset File Size % Changed
kcab.worker.CwpE34S5.js 4.83 MB → 0 B (-4.83 MB) -100%

Bigger
No assets were bigger

Smaller
No assets were smaller

Unchanged
No assets were unchanged


api

Total

Files count Total bundle size % Changed
4 → 1 4.06 MB → 3.83 MB (-228.71 kB) -5.50%
Changeset
File Δ Size
home/runner/work/actual/actual/packages/loot-core/src/server/update.ts 📈 +32 B (+5.15%) 621 B → 653 B
home/runner/work/actual/actual/packages/loot-core/src/server/importers/ynab4.ts 📈 +13 B (+0.14%) 9.17 kB → 9.19 kB
node_modules/i18next/dist/esm/i18next.js 📉 -4 B (-0.01%) 72.62 kB → 72.62 kB
home/runner/work/actual/actual/packages/loot-core/migrations/1632571489012_remove_cache.js 📉 -57 B (-1.87%) 2.98 kB → 2.92 kB
index.ts 📉 -180 B (-31.69%) 568 B → 388 B
node_modules/web-streams-polyfill/dist/ponyfill.es2018.js 🔥 -155.28 kB (-100%) 155.28 kB → 0 B
node_modules/node-fetch/src/index.js 🔥 -8.88 kB (-100%) 8.88 kB → 0 B
node_modules/node-fetch/src/body.js 🔥 -8.19 kB (-100%) 8.19 kB → 0 B
node_modules/node-fetch/src/utils/multipart-parser.js 🔥 -8.1 kB (-100%) 8.1 kB → 0 B
node_modules/node-fetch/src/utils/referrer.js 🔥 -6.2 kB (-100%) 6.2 kB → 0 B
node_modules/node-fetch/src/request.js 🔥 -6.06 kB (-100%) 6.06 kB → 0 B
node_modules/node-fetch/src/headers.js 🔥 -5.85 kB (-100%) 5.85 kB → 0 B
node_modules/fetch-blob/index.js 🔥 -5.68 kB (-100%) 5.68 kB → 0 B
node_modules/md5/md5.js 🔥 -5.3 kB (-100%) 5.3 kB → 0 B
node_modules/node-fetch/src/response.js 🔥 -3.16 kB (-100%) 3.16 kB → 0 B
node_modules/formdata-polyfill/esm.min.js 🔥 -2.71 kB (-100%) 2.71 kB → 0 B
node_modules/crypt/crypt.js 🔥 -2.19 kB (-100%) 2.19 kB → 0 B
node_modules/node-fetch/src/utils/is.js 🔥 -2.09 kB (-100%) 2.09 kB → 0 B
node_modules/fetch-blob/from.js 🔥 -1.31 kB (-100%) 1.31 kB → 0 B
node_modules/data-uri-to-buffer/dist/index.js 🔥 -1.25 kB (-100%) 1.25 kB → 0 B
node_modules/fetch-blob/streams.cjs 🔥 -1.11 kB (-100%) 1.11 kB → 0 B
node_modules/fetch-blob/file.js 🔥 -1.02 kB (-100%) 1.02 kB → 0 B
node_modules/charenc/charenc.js 🔥 -753 B (-100%) 753 B → 0 B
node_modules/node-fetch/src/errors/fetch-error.js 🔥 -738 B (-100%) 738 B → 0 B
node_modules/is-buffer/index.js 🔥 -669 B (-100%) 669 B → 0 B
node_modules/node-domexception/index.js 🔥 -622 B (-100%) 622 B → 0 B
node_modules/node-fetch/src/utils/get-search.js 🔥 -358 B (-100%) 358 B → 0 B
node_modules/node-fetch/src/errors/base.js 🔥 -354 B (-100%) 354 B → 0 B
node_modules/node-fetch/src/utils/is-redirect.js 🔥 -299 B (-100%) 299 B → 0 B
node_modules/node-fetch/src/errors/abort-error.js 🔥 -252 B (-100%) 252 B → 0 B
node_modules/slash/index.js 🔥 -162 B (-100%) 162 B → 0 B
View detailed bundle breakdown

Added
No assets were added

Removed

Asset File Size % Changed
from-Bl-Hslp4.js 167.73 kB → 0 B (-167.73 kB) -100%
src-iMkUmuwR.js 43.64 kB → 0 B (-43.64 kB) -100%
multipart-parser-BnDysoMr.js 8.1 kB → 0 B (-8.1 kB) -100%

Bigger
No assets were bigger

Smaller

Asset File Size % Changed
index.js 3.84 MB → 3.83 MB (-9.23 kB) -0.23%

Unchanged
No assets were unchanged


cli

Total

Files count Total bundle size % Changed
1 7.88 MB 0%
View detailed bundle breakdown

Added
No assets were added

Removed
No assets were removed

Bigger
No assets were bigger

Smaller
No assets were smaller

Unchanged

Asset File Size % Changed
cli.js 7.88 MB 0%

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/actualbudget/actual/pull/7350 **Author:** [@matt-fidd](https://github.com/matt-fidd) **Created:** 4/1/2026 **Status:** ✅ Merged **Merged:** 4/5/2026 **Merged by:** [@matt-fidd](https://github.com/matt-fidd) **Base:** `master` ← **Head:** `trim-deps` --- ### 📝 Commits (10+) - [`221ed52`](https://github.com/actualbudget/actual/commit/221ed52226cb2cb89ebae73833efffe2b76ba9ba) fix github actions inconsistencies - [`d8fc249`](https://github.com/actualbudget/actual/commit/d8fc24946e2d002a3ef14099920ffc6bb86c3668) fix pinning of transitive deps in eslint-plugin - [`68577ba`](https://github.com/actualbudget/actual/commit/68577bad7d2901bb495d95fd7ef8544e1c60d484) drop use of node-fetch in api - [`f2e6f9b`](https://github.com/actualbudget/actual/commit/f2e6f9b7abc20da67fa90c181e0502749e7f4283) drop md5 dependency in favour of node:crypto - [`b23e903`](https://github.com/actualbudget/actual/commit/b23e90374639be748d1812f244c10f3a118d4fef) drop slash - [`cd498e0`](https://github.com/actualbudget/actual/commit/cd498e0c7fd3b5f404cf84d7616b0acf28661aee) drop unused top level packages - [`b155836`](https://github.com/actualbudget/actual/commit/b155836ed316922ea51f954dd44f0cf5e63bf765) add note about node-polyfills warning - [`6b74015`](https://github.com/actualbudget/actual/commit/6b74015c68792d9cbb6b0ea4cb9a78783d1448d4) remove unused deps from desktop-client - [`8a65af9`](https://github.com/actualbudget/actual/commit/8a65af9c303d194b3d322bda0845cb56ecc7fe58) drop pegjs types - [`4d64b00`](https://github.com/actualbudget/actual/commit/4d64b00cb06b0b361108139e6f1fb2b2a8c8a760) note ### 📊 Changes **14 files changed** (+28 additions, -275 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/build.yml` (+3 -3) 📝 `.github/workflows/size-compare.yml` (+2 -2) 📝 `package.json` (+0 -4) 📝 `packages/api/index.ts` (+0 -13) 📝 `packages/api/package.json` (+0 -1) 📝 `packages/desktop-client/package.json` (+0 -2) 📝 `packages/docs/docs/api/index.md` (+1 -1) 📝 `packages/eslint-plugin-actual/package.json` (+0 -6) 📝 `packages/loot-core/package.json` (+1 -4) 📝 `packages/loot-core/src/server/importers/ynab4.ts` (+1 -2) 📝 `packages/loot-core/src/server/update.ts` (+2 -2) 📝 `packages/loot-core/vite.config.ts` (+1 -0) ➕ `upcoming-release-notes/7350.md` (+6 -0) 📝 `yarn.lock` (+11 -235) </details> ### 📄 Description <!-- Thank you for submitting a pull request! Make sure to follow the instructions to write release notes for your PR — it should only take a minute or two: https://github.com/actualbudget/docs#writing-good-release-notes. Try running yarn generate:release-notes *before* pushing your PR for an interactive experience. --> ## Description <!-- What does this PR do? Why is it needed? Please give context on the "why?": why do we need this change? What problem is it solving for you?--> The work that goes into updating dependencies every month is measured in hours, it takes a long time to check the release notes of all dependencies, bump, test etc... I'd really like to slim that list down, and at the same time, lessen our exposure to supply chain attacks and reduce the app size. The compare sizes results below look promising, the increase in desktop-client is because of a new locale being added Here's a PR of quick wins Dependency | Package | Note -- | -- | -- requireindex | eslint-plugin-actual | Unused loupe | eslint-plugin-actual | Pinned vitest 3.x internal tinyspy | eslint-plugin-actual | Pinned vitest 3.x internal strip-literal | eslint-plugin-actual | Pinned vitest 3.x internal baseline-browser-mapping | root | Unused source-map-support | root | Unused node-jq | root | Unused apart from in a yarn script, bundles it's own binary in so is over 1MB when pulled, if people want it they should install it on their device through their normal package manager slash | loot-core | Replaced with our own implementation (for reference: https://github.com/sindresorhus/slash/blob/main/index.js) md5 | loot-core | Replaced with node:crypto @types/pegjs | loot-core | We use peggy now, they ship their own types node-fetch | api | Replaced with native fetch prop-types | desktop-client | Unused memoize-one | desktop-client | Unused - only used in loot-core ## Related issue(s) <!-- e.g. Fixes #123, Relates to #456 --> N/A ## Testing <!-- What did you test? How can we reproduce the issue you are fixing or how can we test the feature you built? --> Built all packages, ran server and client together, CI should pass ## Checklist - [x] Release notes added (see link above) - [x] No obvious regressions in affected areas - [x] Self-review has been performed - I understand what each change in the code does and why it is needed <!--- actual-bot-sections ---> <!--- bundlestats-action-comment key:combined start ---> ### Bundle Stats Bundle | Files count | Total bundle size | % Changed ------ | ----------- | ----------------- | --------- desktop-client | 27 → 28 | 12.09 MB → 12.17 MB (+81.28 kB) | +0.66% loot-core | 1 | 4.83 MB → 4.82 MB (-9.03 kB) | -0.18% api | 4 → 1 | 4.06 MB → 3.83 MB (-228.71 kB) | -5.50% cli | 1 | 7.88 MB | 0% <details> <summary>View detailed bundle stats</summary> #### desktop-client **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 27 → 28 | 12.09 MB → 12.17 MB (+81.28 kB) | +0.66% <details> <summary>Changeset</summary> File | Δ | Size ---- | - | ---- `locale/zh-Hans.json` | 🆕 +81.33 kB | 0 B → 81.33 kB `src/languages.ts` | 📈 +109 B (+6.91%) | 1.54 kB → 1.65 kB `package.json` | 📉 -52 B (-1.58%) | 3.22 kB → 3.17 kB </details> <details> <summary>View detailed bundle breakdown</summary> <div> **Added** Asset | File Size | % Changed ----- | --------- | --------- static/js/zh-Hans.js | 0 B → 81.33 kB (+81.33 kB) | - **Removed** No assets were removed **Bigger** No assets were bigger **Smaller** Asset | File Size | % Changed ----- | --------- | --------- static/js/index.js | 3.23 MB → 3.23 MB (-52 B) | -0.00% **Unchanged** Asset | File Size | % Changed ----- | --------- | --------- static/js/BackgroundImage.js | 119.98 kB | 0% static/js/FormulaEditor.js | 846.44 kB | 0% static/js/ReportRouter.js | 1.02 MB | 0% static/js/TransactionList.js | 81.29 kB | 0% static/js/ca.js | 182.91 kB | 0% static/js/da.js | 104.66 kB | 0% static/js/de.js | 174.79 kB | 0% static/js/en-GB.js | 7.16 kB | 0% static/js/en.js | 170.76 kB | 0% static/js/es.js | 182.18 kB | 0% static/js/fr.js | 177.47 kB | 0% static/js/indexeddb-main-thread-worker-e59fee74.js | 13.46 kB | 0% static/js/it.js | 166.25 kB | 0% static/js/narrow.js | 354.5 kB | 0% static/js/nb-NO.js | 152.2 kB | 0% static/js/nl.js | 108.93 kB | 0% static/js/pl.js | 88.34 kB | 0% static/js/pt-BR.js | 177.84 kB | 0% static/js/resize-observer.js | 18.03 kB | 0% static/js/sv.js | 80.58 kB | 0% static/js/th.js | 179.94 kB | 0% static/js/theme.js | 30.68 kB | 0% static/js/uk.js | 213.14 kB | 0% static/js/useTransactionBatchActions.js | 4.29 MB | 0% static/js/wide.js | 418 B | 0% static/js/workbox-window.prod.es5.js | 7.28 kB | 0% </div> </details> --- #### loot-core **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 1 | 4.83 MB → 4.82 MB (-9.03 kB) | -0.18% <details> <summary>Changeset</summary> File | Δ | Size ---- | - | ---- `home/runner/work/actual/actual/packages/loot-core/src/server/update.ts` | 📈 +45 B (+7.19%) | 626 B → 671 B `home/runner/work/actual/actual/packages/loot-core/src/server/importers/ynab4.ts` | 📈 +13 B (+0.14%) | 9.35 kB → 9.36 kB `home/runner/work/actual/actual/packages/loot-core/migrations/1632571489012_remove_cache.js` | 📈 +3 B (+0.10%) | 3.03 kB → 3.03 kB `node_modules/i18next/dist/esm/i18next.js` | 📉 -4 B (-0.01%) | 74.53 kB → 74.53 kB `node_modules/pbkdf2/lib/sync-browser.js` | 📉 -2 B (-0.06%) | 3.09 kB → 3.09 kB `node_modules/create-hmac/browser.js` | 📉 -2 B (-0.12%) | 1.64 kB → 1.64 kB `node_modules/create-hash/md5.js` | 📉 -2 B (-0.81%) | 247 B → 245 B `node_modules/md5/md5.js` | 🔥 -5.4 kB (-100%) | 5.4 kB → 0 B `node_modules/crypt/crypt.js` | 🔥 -2.23 kB (-100%) | 2.23 kB → 0 B `node_modules/charenc/charenc.js` | 🔥 -763 B (-100%) | 763 B → 0 B `node_modules/is-buffer/index.js` | 🔥 -546 B (-100%) | 546 B → 0 B `node_modules/slash/index.js` | 🔥 -169 B (-100%) | 169 B → 0 B </details> <details> <summary>View detailed bundle breakdown</summary> <div> **Added** Asset | File Size | % Changed ----- | --------- | --------- kcab.worker.CA_4ekI5.js | 0 B → 4.82 MB (+4.82 MB) | - **Removed** Asset | File Size | % Changed ----- | --------- | --------- kcab.worker.CwpE34S5.js | 4.83 MB → 0 B (-4.83 MB) | -100% **Bigger** No assets were bigger **Smaller** No assets were smaller **Unchanged** No assets were unchanged </div> </details> --- #### api **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 4 → 1 | 4.06 MB → 3.83 MB (-228.71 kB) | -5.50% <details> <summary>Changeset</summary> File | Δ | Size ---- | - | ---- `home/runner/work/actual/actual/packages/loot-core/src/server/update.ts` | 📈 +32 B (+5.15%) | 621 B → 653 B `home/runner/work/actual/actual/packages/loot-core/src/server/importers/ynab4.ts` | 📈 +13 B (+0.14%) | 9.17 kB → 9.19 kB `node_modules/i18next/dist/esm/i18next.js` | 📉 -4 B (-0.01%) | 72.62 kB → 72.62 kB `home/runner/work/actual/actual/packages/loot-core/migrations/1632571489012_remove_cache.js` | 📉 -57 B (-1.87%) | 2.98 kB → 2.92 kB `index.ts` | 📉 -180 B (-31.69%) | 568 B → 388 B `node_modules/web-streams-polyfill/dist/ponyfill.es2018.js` | 🔥 -155.28 kB (-100%) | 155.28 kB → 0 B `node_modules/node-fetch/src/index.js` | 🔥 -8.88 kB (-100%) | 8.88 kB → 0 B `node_modules/node-fetch/src/body.js` | 🔥 -8.19 kB (-100%) | 8.19 kB → 0 B `node_modules/node-fetch/src/utils/multipart-parser.js` | 🔥 -8.1 kB (-100%) | 8.1 kB → 0 B `node_modules/node-fetch/src/utils/referrer.js` | 🔥 -6.2 kB (-100%) | 6.2 kB → 0 B `node_modules/node-fetch/src/request.js` | 🔥 -6.06 kB (-100%) | 6.06 kB → 0 B `node_modules/node-fetch/src/headers.js` | 🔥 -5.85 kB (-100%) | 5.85 kB → 0 B `node_modules/fetch-blob/index.js` | 🔥 -5.68 kB (-100%) | 5.68 kB → 0 B `node_modules/md5/md5.js` | 🔥 -5.3 kB (-100%) | 5.3 kB → 0 B `node_modules/node-fetch/src/response.js` | 🔥 -3.16 kB (-100%) | 3.16 kB → 0 B `node_modules/formdata-polyfill/esm.min.js` | 🔥 -2.71 kB (-100%) | 2.71 kB → 0 B `node_modules/crypt/crypt.js` | 🔥 -2.19 kB (-100%) | 2.19 kB → 0 B `node_modules/node-fetch/src/utils/is.js` | 🔥 -2.09 kB (-100%) | 2.09 kB → 0 B `node_modules/fetch-blob/from.js` | 🔥 -1.31 kB (-100%) | 1.31 kB → 0 B `node_modules/data-uri-to-buffer/dist/index.js` | 🔥 -1.25 kB (-100%) | 1.25 kB → 0 B `node_modules/fetch-blob/streams.cjs` | 🔥 -1.11 kB (-100%) | 1.11 kB → 0 B `node_modules/fetch-blob/file.js` | 🔥 -1.02 kB (-100%) | 1.02 kB → 0 B `node_modules/charenc/charenc.js` | 🔥 -753 B (-100%) | 753 B → 0 B `node_modules/node-fetch/src/errors/fetch-error.js` | 🔥 -738 B (-100%) | 738 B → 0 B `node_modules/is-buffer/index.js` | 🔥 -669 B (-100%) | 669 B → 0 B `node_modules/node-domexception/index.js` | 🔥 -622 B (-100%) | 622 B → 0 B `node_modules/node-fetch/src/utils/get-search.js` | 🔥 -358 B (-100%) | 358 B → 0 B `node_modules/node-fetch/src/errors/base.js` | 🔥 -354 B (-100%) | 354 B → 0 B `node_modules/node-fetch/src/utils/is-redirect.js` | 🔥 -299 B (-100%) | 299 B → 0 B `node_modules/node-fetch/src/errors/abort-error.js` | 🔥 -252 B (-100%) | 252 B → 0 B `node_modules/slash/index.js` | 🔥 -162 B (-100%) | 162 B → 0 B </details> <details> <summary>View detailed bundle breakdown</summary> <div> **Added** No assets were added **Removed** Asset | File Size | % Changed ----- | --------- | --------- from-Bl-Hslp4.js | 167.73 kB → 0 B (-167.73 kB) | -100% src-iMkUmuwR.js | 43.64 kB → 0 B (-43.64 kB) | -100% multipart-parser-BnDysoMr.js | 8.1 kB → 0 B (-8.1 kB) | -100% **Bigger** No assets were bigger **Smaller** Asset | File Size | % Changed ----- | --------- | --------- index.js | 3.84 MB → 3.83 MB (-9.23 kB) | -0.23% **Unchanged** No assets were unchanged </div> </details> --- #### cli **Total** Files count | Total bundle size | % Changed ----------- | ----------------- | --------- 1 | 7.88 MB | 0% <details> <summary>View detailed bundle breakdown</summary> <div> **Added** No assets were added **Removed** No assets were removed **Bigger** No assets were bigger **Smaller** No assets were smaller **Unchanged** Asset | File Size | % Changed ----- | --------- | --------- cli.js | 7.88 MB | 0% </div> </details> </details> <!--- bundlestats-action-comment key:combined end ---> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
GiteaMirror added the pull-request label 2026-04-10 22:14:43 -05:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: github-starred/actual#14156