feat: add DendroBundle bundle-size tracking - #41
Closed
tomfordweb wants to merge 1 commit into
Closed
Conversation
- tsup emits the esbuild metafile when BUILD_BUNDLE_STATS is set; ordinary builds stay byte-identical. - bin/dendrobundle-push.sh uploads dist/metafile-esm.json to dendrobundle.com, gzipped, tagged with branch+commit. Non-blocking: missing token or stats file exits 0. - pnpm bundle:push = stats build + upload in one step. - Token lives in the untracked .env (now gitignored), loaded by direnv via dotenv_if_exists and shared into worktrees through a .workmux.yaml symlink.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Wires this repo into dendrobundle.com bundle-size tracking.
tsup.config.ts: emits the esbuild metafile (dist/metafile-esm.json) whenBUILD_BUNDLE_STATSis set; ordinary builds unchanged.bin/dendrobundle-push.sh: gzips and uploads the metafile to dendrobundle.com's push API, tagged with branch + commit. Adapted from andromeda's uploader; token comes only fromDENDROBUNDLE_TOKEN. Non-blocking by design — missing token or stats file exits 0, upload failure is the only nonzero path.pnpm bundle:push: stats build + upload in one step..env(now actually gitignored — it wasn't), loaded into the shell by direnv'sdotenv_if_exists, and symlinked into every worktree via.workmux.yamlso worktree builds can upload without copying the secret.Verified end-to-end:
pnpm bundle:pushuploaded a real snapshot (format: esbuild-metafile, 175KB, 23 modules). Full local gate green (typecheck, lint, test, build).