Skip to content

feat(website): add responsive media tooling for marketing assets#11869

Merged
Yourz merged 9 commits intomainfrom
glary/responsive-media-tooling
May 4, 2026
Merged

feat(website): add responsive media tooling for marketing assets#11869
Yourz merged 9 commits intomainfrom
glary/responsive-media-tooling

Conversation

@christian-byrne
Copy link
Copy Markdown
Contributor

@christian-byrne christian-byrne commented May 3, 2026

PR Created by the Glary-Bot Agent


Summary

Adds the building blocks for a responsive media system on apps/website, motivated by the gallery video blurriness raised in Slack. Three independent pieces:

  1. <SiteVideo> Vue component + URL helper — emits a <video> with multiple <source> tags, designed to pair with assets named ${name}-${width}.${format} on media.comfy.org.
  2. scripts/process-videos.sh — local-developer ffmpeg helper that produces VP9/WebM + H.264/MP4 variants and a poster JPG. Not wired into CI; the team uploads to media.comfy.org out-of-band.
  3. Marketing image conventions — shared MARKETING_FORMATS / MARKETING_WIDTHS constants and a README documenting how to render local marketing images via Astro's built-in <Picture> from astro:assets.

This PR is infrastructure only — no existing pages are modified. Adoption (e.g. converting HeroSection, gallery videos) is a follow-up. The new files are added to knip's ignore list with the existing "pending stacked PR" pattern.

Why this shape

  • No custom <Picture> wrapper. Astro 5 already ships a ResponsiveImage component (name conflict), and Astro's LocalImageProps | RemoteImageProps discriminated union does not survive a thin wrapper without unsafe as casts. Shared constants give the consistency benefit at lower cost.
  • No CI media-upload step. The Release: Website workflow currently only refreshes the Ashby snapshot; wiring GCS uploads into it would require new secrets and team coordination beyond this PR's scope. The script runs locally and outputs are uploaded to media.comfy.org the same way as today.
  • Single resolution per <video>. <source media="..."> inside <video> is unreliable across browsers (Safari ignores it). The script generates multiple widths so callers can pick one per page; JS-based selection can be layered on later if metrics demand it.

What's verified

  • pnpm --filter @comfyorg/website test:unit — 30 pass (7 new for buildVideoSources / videoKey)
  • pnpm --filter @comfyorg/website typecheck — clean
  • pnpm --filter @comfyorg/website build — 41 pages built clean
  • pnpm knip — exit 0
  • oxfmt --check and oxlint clean on all changed files
  • bash -n on process-videos.sh clean; usage and missing-deps paths exercised manually
  • Manual: home page and /gallery rendered via astro dev — both unchanged with zero console errors (screenshots attached)

Review feedback addressed

After Oracle review, three follow-up commits land:

  • SiteVideo reactivitysources is now computed; the <video> is keyed on the joined source URLs so it remounts when the source set changes (browsers don't reload on <source> mutation).
  • SiteVideo accessibilityaria-hidden="true" only when truly decorative (no alt and no controls).
  • Shell script robustness — probes duration with ffprobe and falls back to t=0 for clips shorter than 1s; enables nocaseglob so CLIP.MP4 is picked up.
  • Docs — clarifies when to use <SiteVideo> (lightweight multi-source) vs <VideoPlayer> (captions, controls, scrubber).

Out of scope (follow-ups)

  • Converting existing pages (HeroSection, customer detail heros, gallery) to use the new components. Most current images are CDN-hosted and migrating them is a separate decision.
  • Re-encoding the gallery videos at a higher source width to actually fix the blurriness — that requires the team to run process-videos.sh against the source clips and re-upload.
  • Combining <SiteVideo>'s multi-source support with <VideoPlayer>'s rich chrome.

Screenshots

Home page renders unchanged with no console errors

Gallery page renders unchanged with no console errors

┆Issue is synchronized with this Notion page by Unito

Glary-Bot added 7 commits May 3, 2026 06:19
Adds <SiteVideo> Vue component that renders a multi-source <video> tag, plus a buildVideoSources() helper for URL construction. Component pairs with media.comfy.org assets named <name>-<width>.<format> to give marketing pages proper webm + mp4 fallbacks via <source>.
Local developer tool that produces multi-resolution VP9/WebM + H.264/MP4 variants and a poster JPG for source videos. Naming matches buildVideoSources() so outputs drop straight into media.comfy.org and pair with <SiteVideo>. Not wired into CI by design; the team uploads to media.comfy.org out-of-band.
Adds shared MARKETING_FORMATS / MARKETING_WIDTHS constants and a README for src/assets/marketing/. Pages render local marketing images via Astro's built-in <Picture> with these defaults; a custom wrapper is intentionally avoided because Astro's LocalImageProps | RemoteImageProps discriminated union does not survive a thin wrapper without unsafe casts.
Wraps source list in computed() so prop changes propagate. Keys the <video> element on the joined source URLs to force a remount when the source set changes (browsers do not reload <video> when nested <source> children mutate). Restricts aria-hidden=true to the decorative case (no alt and no controls) to avoid hiding interactive controls from assistive tech. Adds videoKey() helper plus tests.
… extensions

Probe duration with ffprobe and fall back to t=0 when the clip is shorter than 1s; the previous fixed -ss 00:00:01 aborted the script under set -e for short clips. Enable nocaseglob so camera-exported files like CLIP.MP4 are picked up. Documents the new ffprobe dependency.
Adds a section explaining when to use the lightweight multi-source SiteVideo vs the full-featured VideoPlayer with controls, captions, and scrubber. Updates the poster note to reflect the new short-clip fallback behavior.
SiteVideo, marketingImage, and the VideoFormat / VideoSource type exports are intentionally unreferenced until follow-up PRs adopt them. Mark the files in knip.config ignore (matching the existing 'Pending integration in stacked PR' pattern) and tag the unused type exports with @knipIgnoreUsedByStackedPR.
@coderabbitai
Copy link
Copy Markdown
Contributor

coderabbitai Bot commented May 3, 2026

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 6d0040df-9bcc-470b-bb1a-7f24225937db

📥 Commits

Reviewing files that changed from the base of the PR and between 0b7de9d and cbb897c.

📒 Files selected for processing (1)
  • apps/website/scripts/process-videos.sh
🚧 Files skipped from review as they are similar to previous changes (1)
  • apps/website/scripts/process-videos.sh

📝 Walkthrough

Walkthrough

Adds video and marketing asset tooling: a Bash script to transcode videos and extract posters; TypeScript utilities to build typed video source lists and keys; a Vue SiteVideo component; marketing image constants; READMEs and tests; and knip ignores for the new files. (Documentation + new runtime UI + scripts + tests.)

Changes

Video & Marketing Asset System

Layer / File(s) Summary
Data Shapes & Constants
apps/website/src/utils/video.ts, apps/website/src/utils/marketingImage.ts
Adds `VideoFormat = 'webm'
Core Utilities
apps/website/src/utils/video.ts
Implements buildVideoSources({name,baseUrl,width,formats}) (normalizes trailing /, builds {src,type,format} per format/width) and videoKey(sources) (joins src values with `
Encoding Automation
apps/website/scripts/process-videos.sh
New Bash script (strict mode) validating args/tools, discovering source videos, encoding VP9/WebM and H.264/MP4 at requested widths, probing duration, and emitting a scaled poster JPEG per video with deterministic filenames.
UI Component
apps/website/src/components/common/SiteVideo.vue
New typed Vue component accepting name, baseUrl, width, formats, poster, alt, autoplay, loop, muted, controls, preload, containerClass, videoClass; computes sources via buildVideoSources, derives remountKey from videoKey for remounting, sets ARIA attributes, and renders keyed <source> elements.
Docs, Tests & Config
apps/website/scripts/README.md, apps/website/src/assets/marketing/README.md, apps/website/src/utils/video.test.ts, knip.config.ts
Adds scripts README (video processing and Ashby snapshot), marketing assets README (Astro <Picture> usage and guidelines), Vitest tests for buildVideoSources/videoKey, and knip ignores for the new tooling files.

Sequence Diagram

sequenceDiagram
    actor Dev as Developer
    participant Script as process-videos.sh
    participant Src as Source Files
    participant Media as Output Media
    participant Utils as buildVideoSources()
    participant Comp as SiteVideo.vue
    participant Browser as Browser/Video Tag

    Dev->>Script: run (inputDir, outputDir, widths)
    Script->>Src: read source video files
    Script->>Media: write {name}-{w}.webm, {name}-{w}.mp4, {name}-poster.jpg
    Dev->>Comp: render with name, baseUrl, width, formats
    Comp->>Utils: call buildVideoSources(name, baseUrl, width, formats)
    Utils->>Comp: return VideoSource[] (src,type,format)
    Comp->>Browser: render <video> with <source> tags and poster
    Browser->>Media: request video files
    Browser->>Browser: play video
Loading

Estimated code review effort

🎯 3 (Moderate) | ⏱️ ~25 minutes

Poem

🐰
I hopped through files with nimble paws,
scripts that trim and codecs' laws,
typed sources ready, posters bright,
a component snug to show the sight—
hop, upload, and stream tonight! ✨

🚥 Pre-merge checks | ✅ 7
✅ Passed checks (7 passed)
Check name Status Explanation
Title check ✅ Passed The title accurately reflects the main change: introducing a responsive media tooling system with video components, image conventions, and processing scripts for marketing assets.
Description check ✅ Passed The description is comprehensive and well-structured, covering summary, changes, design rationale, verification, and screenshots. It follows the template structure with all key sections completed.
Docstring Coverage ✅ Passed Docstring coverage is 100.00% which is sufficient. The required threshold is 80.00%.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
End-To-End Regression Coverage For Fixes ✅ Passed PR title uses 'feat' prefix with no bug-fix language; all file changes are new additions for responsive media tooling infrastructure.
Adr Compliance For Entity/Litegraph Changes ✅ Passed PR only modifies files under apps/website/ and root-level config; no changes to src/lib/litegraph/, src/ecs/, or graph entity-related files.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch glary/responsive-media-tooling

Review rate limit: 3/5 reviews remaining, refill in 18 minutes and 15 seconds.

Comment @coderabbitai help to get the list of available commands and usage tips.

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 3, 2026

🌐 Website E2E

Tip

All tests passed.

Status ✅ Passed
Report View Report

🔗 Website Preview

Website Preview: https://comfy-website-preview-pr-11869.vercel.app

This commit: https://website-frontend-d1f5hod9k-comfyui.vercel.app

Last updated: 2026-05-04T06:24:17Z for cbb897c

@glary-bot
Copy link
Copy Markdown

glary-bot Bot commented May 3, 2026

Acknowledged — that's a CodeRabbit rate-limit notice, not review feedback, so there's nothing to address. No code changes will be pushed for it. The review can be re-triggered with @coderabbitai review once the cooldown elapses.

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 3, 2026

🎭 Playwright: ✅ 1467 passed, 0 failed

📊 Browser Reports
  • chromium: View Report (✅ 1448 / ❌ 0 / ⚠️ 0 / ⏭️ 5)
  • chromium-2x: View Report (✅ 2 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • chromium-0.5x: View Report (✅ 1 / ❌ 0 / ⚠️ 0 / ⏭️ 0)
  • mobile-chrome: View Report (✅ 16 / ❌ 0 / ⚠️ 0 / ⏭️ 0)

@github-actions
Copy link
Copy Markdown

github-actions Bot commented May 3, 2026

📦 Bundle: 5.26 MB gzip 🟢 -37 B

Details

Summary

  • Raw size: 24.2 MB baseline 24.2 MB — ⚪ 0 B
  • Gzip: 5.26 MB baseline 5.26 MB — 🟢 -37 B
  • Brotli: 4.07 MB baseline 4.07 MB — 🔴 +24 B
  • Bundles: 258 current • 258 baseline • 118 added / 118 removed

Category Glance
Vendor & Third-Party ⚪ 0 B (9.94 MB) · Other ⚪ 0 B (8.84 MB) · Data & Services ⚪ 0 B (3.05 MB) · Graph Workspace ⚪ 0 B (1.24 MB) · Panels & Settings ⚪ 0 B (489 kB) · Utilities & Hooks ⚪ 0 B (365 kB) · + 5 more

App Entry Points — 22.6 kB (baseline 22.6 kB) • ⚪ 0 B

Main entry bundles and manifests

File Before After Δ Raw Δ Gzip Δ Brotli
assets/index-BBVF1tzS.js (new) 22.6 kB 🔴 +22.6 kB 🔴 +8.01 kB 🔴 +6.86 kB
assets/index-DnU2wpu3.js (removed) 22.6 kB 🟢 -22.6 kB 🟢 -8 kB 🟢 -6.87 kB

Status: 1 added / 1 removed

Graph Workspace — 1.24 MB (baseline 1.24 MB) • ⚪ 0 B

Graph editor runtime, canvas, workflow orchestration

File Before After Δ Raw Δ Gzip Δ Brotli
assets/GraphView-DJ6sPBcc.js (new) 1.24 MB 🔴 +1.24 MB 🔴 +265 kB 🔴 +199 kB
assets/GraphView-DQEchrsF.js (removed) 1.24 MB 🟢 -1.24 MB 🟢 -265 kB 🟢 -199 kB

Status: 1 added / 1 removed

Views & Navigation — 81.8 kB (baseline 81.8 kB) • ⚪ 0 B

Top-level views, pages, and routed surfaces

File Before After Δ Raw Δ Gzip Δ Brotli
assets/CloudSurveyView-BrAbHhgH.js (new) 19.6 kB 🔴 +19.6 kB 🔴 +5.14 kB 🔴 +4.58 kB
assets/CloudSurveyView-CBu00oio.js (removed) 19.6 kB 🟢 -19.6 kB 🟢 -5.14 kB 🟢 -4.57 kB
assets/CloudLoginView--WKpLdkm.js (removed) 12.2 kB 🟢 -12.2 kB 🟢 -3.45 kB 🟢 -3.05 kB
assets/CloudLoginView-B0VPnjoD.js (new) 12.2 kB 🔴 +12.2 kB 🔴 +3.45 kB 🔴 +3.05 kB
assets/CloudSignupView-BhuCFc_s.js (new) 9.97 kB 🔴 +9.97 kB 🔴 +2.95 kB 🔴 +2.59 kB
assets/CloudSignupView-CrYUB7rl.js (removed) 9.97 kB 🟢 -9.97 kB 🟢 -2.95 kB 🟢 -2.6 kB
assets/UserCheckView-BpMGpCX5.js (new) 9.07 kB 🔴 +9.07 kB 🔴 +2.33 kB 🔴 +2.05 kB
assets/UserCheckView-DMuWIRir.js (removed) 9.07 kB 🟢 -9.07 kB 🟢 -2.33 kB 🟢 -2.04 kB
assets/CloudLayoutView-CD1Sgy3U.js (new) 7.73 kB 🔴 +7.73 kB 🔴 +2.45 kB 🔴 +2.13 kB
assets/CloudLayoutView-WWhAqj9t.js (removed) 7.73 kB 🟢 -7.73 kB 🟢 -2.46 kB 🟢 -2.15 kB
assets/CloudForgotPasswordView-Cmnahjbn.js (new) 6.14 kB 🔴 +6.14 kB 🔴 +2.19 kB 🔴 +1.92 kB
assets/CloudForgotPasswordView-D793OyMx.js (removed) 6.14 kB 🟢 -6.14 kB 🟢 -2.19 kB 🟢 -1.91 kB
assets/CloudAuthTimeoutView-Ci9Nmqh0.js (new) 5.5 kB 🔴 +5.5 kB 🔴 +2.02 kB 🔴 +1.78 kB
assets/CloudAuthTimeoutView-DPfbTunS.js (removed) 5.5 kB 🟢 -5.5 kB 🟢 -2.02 kB 🟢 -1.79 kB
assets/CloudSubscriptionRedirectView-BwcfxoII.js (removed) 5.28 kB 🟢 -5.28 kB 🟢 -2 kB 🟢 -1.79 kB
assets/CloudSubscriptionRedirectView-kDAGu5dC.js (new) 5.28 kB 🔴 +5.28 kB 🔴 +2 kB 🔴 +1.77 kB
assets/UserSelectView-BFXCJ0ra.js (removed) 4.73 kB 🟢 -4.73 kB 🟢 -1.76 kB 🟢 -1.55 kB
assets/UserSelectView-G6klA_CQ.js (new) 4.73 kB 🔴 +4.73 kB 🔴 +1.75 kB 🔴 +1.55 kB

Status: 9 added / 9 removed / 2 unchanged

Panels & Settings — 489 kB (baseline 489 kB) • ⚪ 0 B

Configuration panels, inspectors, and settings screens

File Before After Δ Raw Δ Gzip Δ Brotli
assets/KeybindingPanel-ChG02WZk.js (removed) 46.7 kB 🟢 -46.7 kB 🟢 -9.62 kB 🟢 -8.56 kB
assets/KeybindingPanel-oFqQLEUR.js (new) 46.7 kB 🔴 +46.7 kB 🔴 +9.62 kB 🔴 +8.55 kB
assets/SecretsPanel-BoKQRaTb.js (removed) 22.9 kB 🟢 -22.9 kB 🟢 -5.55 kB 🟢 -4.87 kB
assets/SecretsPanel-COKKqa3r.js (new) 22.9 kB 🔴 +22.9 kB 🔴 +5.55 kB 🔴 +4.87 kB
assets/LegacyCreditsPanel-CiQcvvGZ.js (removed) 21.7 kB 🟢 -21.7 kB 🟢 -5.91 kB 🟢 -5.22 kB
assets/LegacyCreditsPanel-Dx_Mhr_5.js (new) 21.7 kB 🔴 +21.7 kB 🔴 +5.91 kB 🔴 +5.21 kB
assets/SubscriptionPanel-B93KmF-3.js (new) 19.9 kB 🔴 +19.9 kB 🔴 +5.08 kB 🔴 +4.49 kB
assets/SubscriptionPanel-BEO_s2rU.js (removed) 19.9 kB 🟢 -19.9 kB 🟢 -5.09 kB 🟢 -4.46 kB
assets/AboutPanel-DikWJ3ak.js (removed) 12 kB 🟢 -12 kB 🟢 -3.33 kB 🟢 -2.99 kB
assets/AboutPanel-DRLqweuf.js (new) 12 kB 🔴 +12 kB 🔴 +3.33 kB 🔴 +2.99 kB
assets/ExtensionPanel-CopP8ypT.js (new) 9.97 kB 🔴 +9.97 kB 🔴 +2.91 kB 🔴 +2.58 kB
assets/ExtensionPanel-D6119gu7.js (removed) 9.97 kB 🟢 -9.97 kB 🟢 -2.91 kB 🟢 -2.59 kB
assets/ServerConfigPanel-BqbtZArT.js (new) 7.05 kB 🔴 +7.05 kB 🔴 +2.37 kB 🔴 +2.11 kB
assets/ServerConfigPanel-kCGAET3H.js (removed) 7.05 kB 🟢 -7.05 kB 🟢 -2.37 kB 🟢 -2.11 kB
assets/UserPanel-BBdFQ0zM.js (removed) 6.75 kB 🟢 -6.75 kB 🟢 -2.25 kB 🟢 -1.97 kB
assets/UserPanel-BHGBisNd.js (new) 6.75 kB 🔴 +6.75 kB 🔴 +2.25 kB 🔴 +1.97 kB
assets/cloudRemoteConfig-D3t5iJ4K.js (removed) 2.05 kB 🟢 -2.05 kB 🟢 -989 B 🟢 -848 B
assets/cloudRemoteConfig-GQ3R_OSi.js (new) 2.05 kB 🔴 +2.05 kB 🔴 +990 B 🔴 +852 B
assets/refreshRemoteConfig-Ds-4zXfd.js (new) 1.45 kB 🔴 +1.45 kB 🔴 +649 B 🔴 +551 B
assets/refreshRemoteConfig-n4GGQnbx.js (removed) 1.45 kB 🟢 -1.45 kB 🟢 -648 B 🟢 -552 B

Status: 10 added / 10 removed / 11 unchanged

User & Accounts — 17.5 kB (baseline 17.5 kB) • ⚪ 0 B

Authentication, profile, and account management bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/auth-BLkwS5iF.js (removed) 3.57 kB 🟢 -3.57 kB 🟢 -1.26 kB 🟢 -1.08 kB
assets/auth-DHHs3bJe.js (new) 3.57 kB 🔴 +3.57 kB 🔴 +1.26 kB 🔴 +1.07 kB
assets/SignUpForm-CXqflNEb.js (removed) 3.19 kB 🟢 -3.19 kB 🟢 -1.29 kB 🟢 -1.15 kB
assets/SignUpForm-L20KG1XS.js (new) 3.19 kB 🔴 +3.19 kB 🔴 +1.29 kB 🔴 +1.15 kB
assets/UpdatePasswordContent-BYFTLbUy.js (removed) 2.9 kB 🟢 -2.9 kB 🟢 -1.3 kB 🟢 -1.15 kB
assets/UpdatePasswordContent-C00R8vo1.js (new) 2.9 kB 🔴 +2.9 kB 🔴 +1.3 kB 🔴 +1.15 kB
assets/authStore-BaBPKCK-.js (removed) 1.19 kB 🟢 -1.19 kB 🟢 -568 B 🟢 -505 B
assets/authStore-MCk_iN5G.js (new) 1.19 kB 🔴 +1.19 kB 🔴 +569 B 🔴 +507 B
assets/auth-DzTMEAcb.js (new) 348 B 🔴 +348 B 🔴 +215 B 🔴 +185 B
assets/auth-TddgQqHg.js (removed) 348 B 🟢 -348 B 🟢 -216 B 🟢 -188 B

Status: 5 added / 5 removed / 2 unchanged

Editors & Dialogs — 112 kB (baseline 112 kB) • ⚪ 0 B

Modals, dialogs, drawers, and in-app editors

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyHubPublishDialog-Bft2h3ae.js (new) 85.8 kB 🔴 +85.8 kB 🔴 +18.6 kB 🔴 +15.9 kB
assets/ComfyHubPublishDialog-CxhK_MiT.js (removed) 85.8 kB 🟢 -85.8 kB 🟢 -18.6 kB 🟢 -15.9 kB
assets/useShareDialog-CHdZ1MaM.js (removed) 23.8 kB 🟢 -23.8 kB 🟢 -5.78 kB 🟢 -5.13 kB
assets/useShareDialog-DT4TDmX0.js (new) 23.8 kB 🔴 +23.8 kB 🔴 +5.78 kB 🔴 +5.13 kB
assets/ComfyHubPublishDialog-D7XZKXSn.js (new) 1.35 kB 🔴 +1.35 kB 🔴 +627 B 🔴 +555 B
assets/ComfyHubPublishDialog-De4n05Ys.js (removed) 1.35 kB 🟢 -1.35 kB 🟢 -629 B 🟢 -554 B
assets/useSubscriptionDialog-D0Cq5Ep2.js (removed) 1.17 kB 🟢 -1.17 kB 🟢 -560 B 🟢 -484 B
assets/useSubscriptionDialog-DO2IbYui.js (new) 1.17 kB 🔴 +1.17 kB 🔴 +558 B 🔴 +487 B

Status: 4 added / 4 removed

UI Components — 62.9 kB (baseline 62.9 kB) • ⚪ 0 B

Reusable component library chunks

File Before After Δ Raw Δ Gzip Δ Brotli
assets/ComfyQueueButton-N7aehz7a.js (new) 13.5 kB 🔴 +13.5 kB 🔴 +3.79 kB 🔴 +3.39 kB
assets/ComfyQueueButton-ZEFbKQ3o.js (removed) 13.5 kB 🟢 -13.5 kB 🟢 -3.79 kB 🟢 -3.38 kB
assets/useTerminalTabs-BLspHieY.js (new) 11 kB 🔴 +11 kB 🔴 +3.73 kB 🔴 +3.28 kB
assets/useTerminalTabs-DqeG1zN_.js (removed) 11 kB 🟢 -11 kB 🟢 -3.73 kB 🟢 -3.29 kB
assets/SubscribeButton-BeP1xuOH.js (new) 2.42 kB 🔴 +2.42 kB 🔴 +1.05 kB 🔴 +941 B
assets/SubscribeButton-De1ccFhv.js (removed) 2.42 kB 🟢 -2.42 kB 🟢 -1.05 kB 🟢 -936 B
assets/cloudFeedbackTopbarButton-Cc7y3W6k.js (new) 1.83 kB 🔴 +1.83 kB 🔴 +946 B 🔴 +828 B
assets/cloudFeedbackTopbarButton-DgQgW03d.js (removed) 1.83 kB 🟢 -1.83 kB 🟢 -947 B 🟢 -830 B
assets/ComfyQueueButton-CnBRGl8d.js (new) 1.27 kB 🔴 +1.27 kB 🔴 +595 B 🔴 +528 B
assets/ComfyQueueButton-z6l_DW9C.js (removed) 1.27 kB 🟢 -1.27 kB 🟢 -597 B 🟢 -527 B

Status: 5 added / 5 removed / 9 unchanged

Data & Services — 3.05 MB (baseline 3.05 MB) • ⚪ 0 B

Stores, services, APIs, and repositories

File Before After Δ Raw Δ Gzip Δ Brotli
assets/dialogService-_DsXLuRe.js (new) 1.99 MB 🔴 +1.99 MB 🔴 +458 kB 🔴 +347 kB
assets/dialogService-DAwHmAWz.js (removed) 1.99 MB 🟢 -1.99 MB 🟢 -458 kB 🟢 -347 kB
assets/api-CUCcOYJe.js (new) 887 kB 🔴 +887 kB 🔴 +212 kB 🔴 +167 kB
assets/api-DPOly-Nk.js (removed) 887 kB 🟢 -887 kB 🟢 -212 kB 🟢 -167 kB
assets/load3dService-DCQwoHBC.js (new) 115 kB 🔴 +115 kB 🔴 +25 kB 🔴 +21.3 kB
assets/load3dService-DtbjDCh9.js (removed) 115 kB 🟢 -115 kB 🟢 -25 kB 🟢 -21.3 kB
assets/workflowShareService-BbHMaYMf.js (removed) 16.6 kB 🟢 -16.6 kB 🟢 -4.89 kB 🟢 -4.34 kB
assets/workflowShareService-CTCaCXmq.js (new) 16.6 kB 🔴 +16.6 kB 🔴 +4.89 kB 🔴 +4.33 kB
assets/keybindingService-BL40z1g8.js (new) 13.8 kB 🔴 +13.8 kB 🔴 +3.67 kB 🔴 +3.22 kB
assets/keybindingService-C1hen6Wx.js (removed) 13.8 kB 🟢 -13.8 kB 🟢 -3.67 kB 🟢 -3.22 kB
assets/releaseStore-D1o4_Pwf.js (removed) 8.12 kB 🟢 -8.12 kB 🟢 -2.28 kB 🟢 -2 kB
assets/releaseStore-IkPUANHZ.js (new) 8.12 kB 🔴 +8.12 kB 🔴 +2.28 kB 🔴 +2 kB
assets/userStore-C-F4ztcM.js (new) 2.24 kB 🔴 +2.24 kB 🔴 +870 B 🔴 +763 B
assets/userStore-DEAIq4Ln.js (removed) 2.24 kB 🟢 -2.24 kB 🟢 -870 B 🟢 -759 B
assets/audioService-B7qYqnaU.js (new) 1.8 kB 🔴 +1.8 kB 🔴 +879 B 🔴 +762 B
assets/audioService-D0yN6GcT.js (removed) 1.8 kB 🟢 -1.8 kB 🟢 -878 B 🟢 -764 B
assets/releaseStore-CQSWjL61.js (new) 1.19 kB 🔴 +1.19 kB 🔴 +564 B 🔴 +500 B
assets/releaseStore-pOcHZ3up.js (removed) 1.19 kB 🟢 -1.19 kB 🟢 -563 B 🟢 -495 B
assets/workflowDraftStore-BxsGrJTU.js (removed) 1.17 kB 🟢 -1.17 kB 🟢 -559 B 🟢 -494 B
assets/workflowDraftStore-D9_ds6o6.js (new) 1.17 kB 🔴 +1.17 kB 🔴 +559 B 🔴 +498 B
assets/dialogService-BcVM47GC.js (removed) 1.16 kB 🟢 -1.16 kB 🟢 -551 B 🟢 -488 B
assets/dialogService-CPhvbBrl.js (new) 1.16 kB 🔴 +1.16 kB 🔴 +551 B 🔴 +492 B
assets/settingStore-B88twmtt.js (new) 1.15 kB 🔴 +1.15 kB 🔴 +555 B 🔴 +490 B
assets/settingStore-BvI5g_Eu.js (removed) 1.15 kB 🟢 -1.15 kB 🟢 -554 B 🟢 -485 B
assets/assetsStore-BlcQ1GO3.js (new) 1.15 kB 🔴 +1.15 kB 🔴 +555 B 🔴 +490 B
assets/assetsStore-CXG6dh-u.js (removed) 1.15 kB 🟢 -1.15 kB 🟢 -554 B 🟢 -486 B

Status: 13 added / 13 removed / 4 unchanged

Utilities & Hooks — 365 kB (baseline 365 kB) • ⚪ 0 B

Helpers, composables, and utility bundles

File Before After Δ Raw Δ Gzip Δ Brotli
assets/useConflictDetection-D70JTENY.js (removed) 233 kB 🟢 -233 kB 🟢 -51.8 kB 🟢 -42.2 kB
assets/useConflictDetection-TmFrw97q.js (new) 233 kB 🔴 +233 kB 🔴 +51.8 kB 🔴 +42.2 kB
assets/useLoad3d-BJwlEo96.js (removed) 22.3 kB 🟢 -22.3 kB 🟢 -5.09 kB 🟢 -4.51 kB
assets/useLoad3d-BPu4b1w_.js (new) 22.3 kB 🔴 +22.3 kB 🔴 +5.09 kB 🔴 +4.5 kB
assets/useLoad3dViewer-Co3ZY_lI.js (removed) 20.8 kB 🟢 -20.8 kB 🟢 -4.91 kB 🟢 -4.3 kB
assets/useLoad3dViewer-DGJRmqp2.js (new) 20.8 kB 🔴 +20.8 kB 🔴 +4.91 kB 🔴 +4.3 kB
assets/useFeatureFlags-BUq6kx0i.js (new) 5.95 kB 🔴 +5.95 kB 🔴 +1.79 kB 🔴 +1.52 kB
assets/useFeatureFlags-EksjwOWC.js (removed) 5.95 kB 🟢 -5.95 kB 🟢 -1.79 kB 🟢 -1.53 kB
assets/useCopyToClipboard-BZWSSh-c.js (removed) 5.29 kB 🟢 -5.29 kB 🟢 -1.86 kB 🟢 -1.57 kB
assets/useCopyToClipboard-DWGUTH2G.js (new) 5.29 kB 🔴 +5.29 kB 🔴 +1.86 kB 🔴 +1.57 kB
assets/useWorkspaceUI-BzGiMbk5.js (removed) 3.34 kB 🟢 -3.34 kB 🟢 -982 B 🟢 -811 B
assets/useWorkspaceUI-BZKSdllN.js (new) 3.34 kB 🔴 +3.34 kB 🔴 +981 B 🔴 +809 B
assets/subscriptionCheckoutUtil-BY51We44.js (new) 3.31 kB 🔴 +3.31 kB 🔴 +1.36 kB 🔴 +1.19 kB
assets/subscriptionCheckoutUtil-DzIFGzhc.js (removed) 3.31 kB 🟢 -3.31 kB 🟢 -1.36 kB 🟢 -1.19 kB
assets/assetPreviewUtil-BIWfhxMR.js (new) 2.27 kB 🔴 +2.27 kB 🔴 +956 B 🔴 +837 B
assets/assetPreviewUtil-DJ2fA5-l.js (removed) 2.27 kB 🟢 -2.27 kB 🟢 -959 B 🟢 -835 B
assets/useUpstreamValue-B1YIrzgh.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -805 B 🟢 -711 B
assets/useUpstreamValue-BmaIU2__.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +804 B 🔴 +713 B
assets/useLoad3d-B3w9SURh.js (removed) 1.33 kB 🟢 -1.33 kB 🟢 -619 B 🟢 -559 B
assets/useLoad3d-B8fyuy6k.js (new) 1.33 kB 🔴 +1.33 kB 🔴 +623 B 🔴 +556 B
assets/useLoad3dViewer-BaqyroW8.js (new) 1.27 kB 🔴 +1.27 kB 🔴 +587 B 🔴 +530 B
assets/useLoad3dViewer-BWWO-5R7.js (removed) 1.27 kB 🟢 -1.27 kB 🟢 -587 B 🟢 -525 B
assets/useCurrentUser-6vPFoaBE.js (new) 1.15 kB 🔴 +1.15 kB 🔴 +555 B 🔴 +489 B
assets/useCurrentUser-r0tAGfGt.js (removed) 1.15 kB 🟢 -1.15 kB 🟢 -554 B 🟢 -485 B
assets/useWorkspaceSwitch-B-JPaOeX.js (new) 747 B 🔴 +747 B 🔴 +382 B 🔴 +332 B
assets/useWorkspaceSwitch-CvGh3EVu.js (removed) 747 B 🟢 -747 B 🟢 -383 B 🟢 -332 B

Status: 13 added / 13 removed / 18 unchanged

Vendor & Third-Party — 9.94 MB (baseline 9.94 MB) • ⚪ 0 B

External libraries and shared vendor chunks

Status: 16 unchanged

Other — 8.84 MB (baseline 8.84 MB) • ⚪ 0 B

Bundles that do not match a named category

File Before After Δ Raw Δ Gzip Δ Brotli
assets/core-CHh805tI.js (removed) 76.6 kB 🟢 -76.6 kB 🟢 -19.8 kB 🟢 -16.9 kB
assets/core-y70BCVKH.js (new) 76.6 kB 🔴 +76.6 kB 🔴 +19.9 kB 🔴 +16.9 kB
assets/groupNode-Cb9SIDbV.js (new) 74.9 kB 🔴 +74.9 kB 🔴 +18.7 kB 🔴 +16.5 kB
assets/groupNode-fX92vpLu.js (removed) 74.9 kB 🟢 -74.9 kB 🟢 -18.7 kB 🟢 -16.5 kB
assets/WidgetSelect-Dn-KeIJz.js (removed) 67.2 kB 🟢 -67.2 kB 🟢 -14.6 kB 🟢 -12.7 kB
assets/WidgetSelect-Dw3ZJsU8.js (new) 67.2 kB 🔴 +67.2 kB 🔴 +14.6 kB 🔴 +12.6 kB
assets/SubscriptionRequiredDialogContentWorkspace-CMHyolGN.js (removed) 48.8 kB 🟢 -48.8 kB 🟢 -9.53 kB 🟢 -8.23 kB
assets/SubscriptionRequiredDialogContentWorkspace-DYaG7rg_.js (new) 48.8 kB 🔴 +48.8 kB 🔴 +9.53 kB 🔴 +8.21 kB
assets/Load3DControls-CipL9U-X.js (removed) 46.1 kB 🟢 -46.1 kB 🟢 -7.51 kB 🟢 -6.54 kB
assets/Load3DControls-CRStDYxQ.js (new) 46.1 kB 🔴 +46.1 kB 🔴 +7.51 kB 🔴 +6.55 kB
assets/WidgetPainter-CAJE2JVa.js (removed) 34 kB 🟢 -34 kB 🟢 -8.3 kB 🟢 -7.37 kB
assets/WidgetPainter-QPdy5KGe.js (new) 34 kB 🔴 +34 kB 🔴 +8.3 kB 🔴 +7.37 kB
assets/WorkspacePanelContent-DLfDZ6h_.js (removed) 32.8 kB 🟢 -32.8 kB 🟢 -7.01 kB 🟢 -6.19 kB
assets/WorkspacePanelContent-wnzwGwGc.js (new) 32.8 kB 🔴 +32.8 kB 🔴 +7.01 kB 🔴 +6.19 kB
assets/Load3dViewerContent-CTXMb-ol.js (removed) 28 kB 🟢 -28 kB 🟢 -5.85 kB 🟢 -5.07 kB
assets/Load3dViewerContent-wbSuIjBb.js (new) 28 kB 🔴 +28 kB 🔴 +5.85 kB 🔴 +5.07 kB
assets/SubscriptionRequiredDialogContent-_ejM2oUy.js (new) 27.5 kB 🔴 +27.5 kB 🔴 +6.98 kB 🔴 +6.17 kB
assets/SubscriptionRequiredDialogContent-Df7gcUBO.js (removed) 27.5 kB 🟢 -27.5 kB 🟢 -6.98 kB 🟢 -6.17 kB
assets/WidgetImageCrop--RlrfzJb.js (removed) 24.3 kB 🟢 -24.3 kB 🟢 -6.2 kB 🟢 -5.46 kB
assets/WidgetImageCrop-B4NqW64A.js (new) 24.3 kB 🔴 +24.3 kB 🔴 +6.2 kB 🔴 +5.46 kB
assets/SubscriptionPanelContentWorkspace-BVhv35pl.js (new) 22.2 kB 🔴 +22.2 kB 🔴 +5.17 kB 🔴 +4.56 kB
assets/SubscriptionPanelContentWorkspace-C-y3ka1i.js (removed) 22.2 kB 🟢 -22.2 kB 🟢 -5.17 kB 🟢 -4.55 kB
assets/SignInContent-BDCLUuCL.js (new) 20.6 kB 🔴 +20.6 kB 🔴 +5.38 kB 🔴 +4.69 kB
assets/SignInContent-D_R-mega.js (removed) 20.6 kB 🟢 -20.6 kB 🟢 -5.38 kB 🟢 -4.71 kB
assets/CurrentUserPopoverWorkspace-BfHHqjPU.js (removed) 20.6 kB 🟢 -20.6 kB 🟢 -4.92 kB 🟢 -4.4 kB
assets/CurrentUserPopoverWorkspace-DfeUFCEh.js (new) 20.6 kB 🔴 +20.6 kB 🔴 +4.91 kB 🔴 +4.39 kB
assets/WidgetInputNumber-cPql4ybc.js (removed) 19.1 kB 🟢 -19.1 kB 🟢 -4.84 kB 🟢 -4.3 kB
assets/WidgetInputNumber-FG097USL.js (new) 19.1 kB 🔴 +19.1 kB 🔴 +4.84 kB 🔴 +4.3 kB
assets/Load3D-BmZoKY3p.js (new) 18.5 kB 🔴 +18.5 kB 🔴 +4.39 kB 🔴 +3.83 kB
assets/Load3D-CdiRySaY.js (removed) 18.5 kB 🟢 -18.5 kB 🟢 -4.39 kB 🟢 -3.83 kB
assets/WidgetRecordAudio-CNMi9ayM.js (removed) 17.4 kB 🟢 -17.4 kB 🟢 -5.02 kB 🟢 -4.48 kB
assets/WidgetRecordAudio-CvaBR_xi.js (new) 17.4 kB 🔴 +17.4 kB 🔴 +5.02 kB 🔴 +4.48 kB
assets/WidgetRange-CyDOwsPR.js (new) 17.1 kB 🔴 +17.1 kB 🔴 +4.61 kB 🔴 +4.12 kB
assets/WidgetRange-prwRL6Qj.js (removed) 17.1 kB 🟢 -17.1 kB 🟢 -4.61 kB 🟢 -4.12 kB
assets/load3d-DU60tfer.js (removed) 15.8 kB 🟢 -15.8 kB 🟢 -4.59 kB 🟢 -3.97 kB
assets/load3d-qSSuJF5H.js (new) 15.8 kB 🔴 +15.8 kB 🔴 +4.59 kB 🔴 +3.98 kB
assets/WaveAudioPlayer-BKdOvQf5.js (removed) 13.4 kB 🟢 -13.4 kB 🟢 -3.69 kB 🟢 -3.23 kB
assets/WaveAudioPlayer-BQ0ISrHW.js (new) 13.4 kB 🔴 +13.4 kB 🔴 +3.69 kB 🔴 +3.23 kB
assets/WidgetCurve-DHT1QUBd.js (removed) 12.2 kB 🟢 -12.2 kB 🟢 -3.94 kB 🟢 -3.56 kB
assets/WidgetCurve-MceqKcEe.js (new) 12.2 kB 🔴 +12.2 kB 🔴 +3.93 kB 🔴 +3.55 kB
assets/TeamWorkspacesDialogContent-2NzN0oLk.js (removed) 11.3 kB 🟢 -11.3 kB 🟢 -3.43 kB 🟢 -3.05 kB
assets/TeamWorkspacesDialogContent-8xn-YOOG.js (new) 11.3 kB 🔴 +11.3 kB 🔴 +3.42 kB 🔴 +3.05 kB
assets/nodeTemplates-BXFwJDvi.js (new) 9.84 kB 🔴 +9.84 kB 🔴 +3.48 kB 🔴 +3.07 kB
assets/nodeTemplates-D354Wnyn.js (removed) 9.84 kB 🟢 -9.84 kB 🟢 -3.48 kB 🟢 -3.06 kB
assets/NightlySurveyController-C7MYOhkq.js (removed) 9.02 kB 🟢 -9.02 kB 🟢 -3.17 kB 🟢 -2.79 kB
assets/NightlySurveyController-DsDkFZc7.js (new) 9.02 kB 🔴 +9.02 kB 🔴 +3.16 kB 🔴 +2.79 kB
assets/Load3DConfiguration-BNtgda6F.js (removed) 8.03 kB 🟢 -8.03 kB 🟢 -2.36 kB 🟢 -2.06 kB
assets/Load3DConfiguration-EAuar8ow.js (new) 8.03 kB 🔴 +8.03 kB 🔴 +2.36 kB 🔴 +2.07 kB
assets/InviteMemberDialogContent-Bn95nDaC.js (removed) 7.94 kB 🟢 -7.94 kB 🟢 -2.53 kB 🟢 -2.21 kB
assets/InviteMemberDialogContent-UV5vOniu.js (new) 7.94 kB 🔴 +7.94 kB 🔴 +2.53 kB 🔴 +2.22 kB
assets/onboardingCloudRoutes-BE8oeA7F.js (removed) 6.59 kB 🟢 -6.59 kB 🟢 -2.06 kB 🟢 -1.78 kB
assets/onboardingCloudRoutes-DmUNHfHk.js (new) 6.59 kB 🔴 +6.59 kB 🔴 +2.06 kB 🔴 +1.77 kB
assets/CreateWorkspaceDialogContent-DQJmX7YC.js (new) 6.15 kB 🔴 +6.15 kB 🔴 +2.24 kB 🔴 +1.95 kB
assets/CreateWorkspaceDialogContent-DxkgmItf.js (removed) 6.15 kB 🟢 -6.15 kB 🟢 -2.24 kB 🟢 -1.94 kB
assets/WidgetWithControl-BO9CEfYt.js (new) 6.05 kB 🔴 +6.05 kB 🔴 +2.42 kB 🔴 +2.14 kB
assets/WidgetWithControl-CSVPcb46.js (removed) 6.05 kB 🟢 -6.05 kB 🟢 -2.42 kB 🟢 -2.15 kB
assets/FreeTierDialogContent-IKwkL89i.js (new) 6.01 kB 🔴 +6.01 kB 🔴 +2.13 kB 🔴 +1.9 kB
assets/FreeTierDialogContent-mXTK0rUl.js (removed) 6.01 kB 🟢 -6.01 kB 🟢 -2.14 kB 🟢 -1.88 kB
assets/EditWorkspaceDialogContent-B_gQ-b8f.js (removed) 5.95 kB 🟢 -5.95 kB 🟢 -2.2 kB 🟢 -1.93 kB
assets/EditWorkspaceDialogContent-Dy-L-QOM.js (new) 5.95 kB 🔴 +5.95 kB 🔴 +2.2 kB 🔴 +1.93 kB
assets/WidgetTextarea-eQZ1psRz.js (new) 5.76 kB 🔴 +5.76 kB 🔴 +2.27 kB 🔴 +2.01 kB
assets/WidgetTextarea-J0I_8ivJ.js (removed) 5.76 kB 🟢 -5.76 kB 🟢 -2.27 kB 🟢 -2.02 kB
assets/Preview3d-CrstahUU.js (new) 5.73 kB 🔴 +5.73 kB 🔴 +1.93 kB 🔴 +1.69 kB
assets/Preview3d-FIrc1VzH.js (removed) 5.73 kB 🟢 -5.73 kB 🟢 -1.93 kB 🟢 -1.68 kB
assets/ValueControlPopover-Cag33HU7.js (new) 5.53 kB 🔴 +5.53 kB 🔴 +2.02 kB 🔴 +1.79 kB
assets/ValueControlPopover-DQypFrHJ.js (removed) 5.53 kB 🟢 -5.53 kB 🟢 -2.02 kB 🟢 -1.79 kB
assets/CancelSubscriptionDialogContent-BRnCc4XT.js (new) 5.49 kB 🔴 +5.49 kB 🔴 +2.06 kB 🔴 +1.81 kB
assets/CancelSubscriptionDialogContent-DcmIi9d7.js (removed) 5.49 kB 🟢 -5.49 kB 🟢 -2.06 kB 🟢 -1.8 kB
assets/DeleteWorkspaceDialogContent-Cv36_aoj.js (new) 4.85 kB 🔴 +4.85 kB 🔴 +1.88 kB 🔴 +1.63 kB
assets/DeleteWorkspaceDialogContent-DeLhy7mk.js (removed) 4.85 kB 🟢 -4.85 kB 🟢 -1.88 kB 🟢 -1.63 kB
assets/LeaveWorkspaceDialogContent-eqeDDdDg.js (removed) 4.68 kB 🟢 -4.68 kB 🟢 -1.82 kB 🟢 -1.59 kB
assets/LeaveWorkspaceDialogContent-QJ4HZaxi.js (new) 4.68 kB 🔴 +4.68 kB 🔴 +1.82 kB 🔴 +1.58 kB
assets/RemoveMemberDialogContent-Bbm-zfAm.js (new) 4.66 kB 🔴 +4.66 kB 🔴 +1.78 kB 🔴 +1.55 kB
assets/RemoveMemberDialogContent-Dd5Dm378.js (removed) 4.66 kB 🟢 -4.66 kB 🟢 -1.78 kB 🟢 -1.55 kB
assets/RevokeInviteDialogContent-CATB0g9S.js (removed) 4.57 kB 🟢 -4.57 kB 🟢 -1.79 kB 🟢 -1.57 kB
assets/RevokeInviteDialogContent-DDJuW0Uc.js (new) 4.57 kB 🔴 +4.57 kB 🔴 +1.79 kB 🔴 +1.57 kB
assets/InviteMemberUpsellDialogContent-CC4o7gNL.js (new) 4.47 kB 🔴 +4.47 kB 🔴 +1.65 kB 🔴 +1.46 kB
assets/InviteMemberUpsellDialogContent-Cky_mK2Z.js (removed) 4.47 kB 🟢 -4.47 kB 🟢 -1.65 kB 🟢 -1.44 kB
assets/tierBenefits-CuD-YlaS.js (removed) 4.45 kB 🟢 -4.45 kB 🟢 -1.57 kB 🟢 -1.36 kB
assets/tierBenefits-DA5gb5pK.js (new) 4.45 kB 🔴 +4.45 kB 🔴 +1.57 kB 🔴 +1.36 kB
assets/cloudSessionCookie-lkrpLThU.js (removed) 4.31 kB 🟢 -4.31 kB 🟢 -1.58 kB 🟢 -1.38 kB
assets/cloudSessionCookie-w2bmZuX_.js (new) 4.31 kB 🔴 +4.31 kB 🔴 +1.58 kB 🔴 +1.37 kB
assets/Media3DTop-BFOrF-Re.js (removed) 4.04 kB 🟢 -4.04 kB 🟢 -1.71 kB 🟢 -1.51 kB
assets/Media3DTop-C8JNYW5O.js (new) 4.04 kB 🔴 +4.04 kB 🔴 +1.71 kB 🔴 +1.51 kB
assets/saveMesh-CdsYcgtH.js (removed) 4.03 kB 🟢 -4.03 kB 🟢 -1.76 kB 🟢 -1.55 kB
assets/saveMesh-g0_yFU9c.js (new) 4.03 kB 🔴 +4.03 kB 🔴 +1.76 kB 🔴 +1.55 kB
assets/GlobalToast-BemFsJH1.js (new) 3.05 kB 🔴 +3.05 kB 🔴 +1.26 kB 🔴 +1.07 kB
assets/GlobalToast-DIVUnBPN.js (removed) 3.05 kB 🟢 -3.05 kB 🟢 -1.26 kB 🟢 -1.08 kB
assets/CloudRunButtonWrapper-DCmLmpYP.js (new) 2.23 kB 🔴 +2.23 kB 🔴 +1.02 kB 🔴 +908 B
assets/CloudRunButtonWrapper-DGVpuUpb.js (removed) 2.23 kB 🟢 -2.23 kB 🟢 -1.02 kB 🟢 -906 B
assets/SubscribeToRun-CB2uaI-I.js (new) 2.13 kB 🔴 +2.13 kB 🔴 +980 B 🔴 +885 B
assets/SubscribeToRun-DtCmdbZi.js (removed) 2.13 kB 🟢 -2.13 kB 🟢 -980 B 🟢 -864 B
assets/MediaAudioTop-BY4-XUE2.js (new) 2.08 kB 🔴 +2.08 kB 🔴 +1.01 kB 🔴 +864 B
assets/MediaAudioTop-E8ykZ8ad.js (removed) 2.08 kB 🟢 -2.08 kB 🟢 -1.01 kB 🟢 -868 B
assets/cloudBadges-B8YMbDgn.js (removed) 1.96 kB 🟢 -1.96 kB 🟢 -979 B 🟢 -845 B
assets/cloudBadges-CacFJYKF.js (new) 1.96 kB 🔴 +1.96 kB 🔴 +980 B 🔴 +849 B
assets/cloudSubscription-B2L8VD4p.js (removed) 1.88 kB 🟢 -1.88 kB 🟢 -901 B 🟢 -776 B
assets/cloudSubscription-iE_qkF-I.js (new) 1.88 kB 🔴 +1.88 kB 🔴 +900 B 🔴 +778 B
assets/graphHasMissingNodes-C2DUBs9i.js (removed) 1.83 kB 🟢 -1.83 kB 🟢 -859 B 🟢 -754 B
assets/graphHasMissingNodes-CEjoehrM.js (new) 1.83 kB 🔴 +1.83 kB 🔴 +860 B 🔴 +775 B
assets/Load3D-D5JuVgfa.js (new) 1.58 kB 🔴 +1.58 kB 🔴 +716 B 🔴 +638 B
assets/Load3D-UV30UtvI.js (removed) 1.58 kB 🟢 -1.58 kB 🟢 -712 B 🟢 -629 B
assets/previousFullPath-B0PcDfHO.js (new) 1.53 kB 🔴 +1.53 kB 🔴 +693 B 🔴 +598 B
assets/previousFullPath-B5O2iRzV.js (removed) 1.53 kB 🟢 -1.53 kB 🟢 -695 B 🟢 -619 B
assets/nightlyBadges-Dv7npNfq.js (removed) 1.49 kB 🟢 -1.49 kB 🟢 -744 B 🟢 -666 B
assets/nightlyBadges-Pw78Xi3y.js (new) 1.49 kB 🔴 +1.49 kB 🔴 +745 B 🔴 +687 B
assets/Load3dViewerContent-CTMv0Ca_.js (new) 1.46 kB 🔴 +1.46 kB 🔴 +666 B 🔴 +605 B
assets/Load3dViewerContent-DsSBrd7w.js (removed) 1.46 kB 🟢 -1.46 kB 🟢 -663 B 🟢 -603 B
assets/SubscriptionPanelContentWorkspace-B8XZqwFh.js (new) 1.35 kB 🔴 +1.35 kB 🔴 +620 B 🔴 +537 B
assets/SubscriptionPanelContentWorkspace-DCxXY6JF.js (removed) 1.35 kB 🟢 -1.35 kB 🟢 -618 B 🟢 -537 B
assets/WidgetLegacy-BswyTR-g.js (new) 1.18 kB 🔴 +1.18 kB 🔴 +566 B 🔴 +494 B
assets/WidgetLegacy-CbwXgg1-.js (removed) 1.18 kB 🟢 -1.18 kB 🟢 -566 B 🟢 -494 B
assets/changeTracker-_3fMBTD0.js (new) 1.15 kB 🔴 +1.15 kB 🔴 +555 B 🔴 +486 B
assets/changeTracker-Cdp6jrcr.js (removed) 1.15 kB 🟢 -1.15 kB 🟢 -554 B 🟢 -484 B

Status: 57 added / 57 removed / 78 unchanged

⚡ Performance Report

canvas-idle: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 68.4 MB heap
canvas-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 43.1 MB heap
canvas-zoom-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 46.6 MB heap
dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.9 MB heap
large-graph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.4 MB heap
large-graph-pan: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.5 MB heap
large-graph-zoom: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.3 MB heap
minimap-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 72.0 MB heap
subgraph-dom-widget-clipping: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 55.1 MB heap
subgraph-idle: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 67.6 MB heap
subgraph-mouse-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 60.4 MB heap
viewport-pan-sweep: · 60.0 avg FPS · 59.9 P5 FPS ✅ (target: ≥52) · 0ms TBT · 66.7 MB heap
vue-large-graph-idle: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 162.9 MB heap
vue-large-graph-pan: · 58.1 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 166.6 MB heap
workflow-execution: · 60.0 avg FPS · 59.5 P5 FPS ✅ (target: ≥52) · 0ms TBT · 52.6 MB heap

No regressions detected.

All metrics
Metric Baseline PR (median) Δ Sig
canvas-idle: avg frame time 17ms 17ms +0% z=-0.1
canvas-idle: p95 frame time 17ms 17ms -0%
canvas-idle: layout duration 0ms 0ms +0%
canvas-idle: style recalc duration 8ms 8ms +9% z=-2.6
canvas-idle: layout count 0 0 +0%
canvas-idle: style recalc count 8 9 +13% z=-3.8
canvas-idle: task duration 378ms 351ms -7% z=-1.4
canvas-idle: script duration 19ms 17ms -11% z=-3.8
canvas-idle: TBT 0ms 0ms +0%
canvas-idle: heap used 68.4 MB 68.4 MB -0%
canvas-idle: DOM nodes 16 18 +13% z=-3.6
canvas-idle: event listeners 4 4 +0% z=-1.6
canvas-mouse-sweep: avg frame time 17ms 17ms +0% z=-0.4
canvas-mouse-sweep: p95 frame time 17ms 17ms -1%
canvas-mouse-sweep: layout duration 4ms 3ms -13% z=-1.9
canvas-mouse-sweep: style recalc duration 42ms 35ms -16% z=-2.3
canvas-mouse-sweep: layout count 12 12 +0%
canvas-mouse-sweep: style recalc count 72 74 +3% z=-2.0
canvas-mouse-sweep: task duration 821ms 785ms -4% z=-1.4
canvas-mouse-sweep: script duration 128ms 128ms +0% z=-1.1
canvas-mouse-sweep: TBT 0ms 0ms +0%
canvas-mouse-sweep: heap used 46.5 MB 43.1 MB -7%
canvas-mouse-sweep: DOM nodes -265 -264 -0% z=-126.2
canvas-mouse-sweep: event listeners -133 -133 +0% z=-33.9
canvas-zoom-sweep: avg frame time 17ms 17ms -0% z=-1.1
canvas-zoom-sweep: p95 frame time 17ms 17ms -1%
canvas-zoom-sweep: layout duration 1ms 1ms -6% z=-0.3
canvas-zoom-sweep: style recalc duration 18ms 20ms +9% z=0.3
canvas-zoom-sweep: layout count 6 6 +0%
canvas-zoom-sweep: style recalc count 32 32 +0% z=1.6
canvas-zoom-sweep: task duration 310ms 309ms -0% z=-0.8
canvas-zoom-sweep: script duration 22ms 20ms -9% z=-2.5
canvas-zoom-sweep: TBT 0ms 0ms +0%
canvas-zoom-sweep: heap used 46.3 MB 46.6 MB +1%
canvas-zoom-sweep: DOM nodes 76 77 +1% z=-2.8
canvas-zoom-sweep: event listeners 19 19 +0% z=-0.9
dom-widget-clipping: avg frame time 17ms 17ms -0% z=-0.6
dom-widget-clipping: p95 frame time 17ms 17ms +0%
dom-widget-clipping: layout duration 0ms 0ms +0%
dom-widget-clipping: style recalc duration 7ms 8ms +10% z=-2.9
dom-widget-clipping: layout count 0 0 +0%
dom-widget-clipping: style recalc count 10 10 +0% z=-6.2
dom-widget-clipping: task duration 338ms 326ms -4% z=-2.4
dom-widget-clipping: script duration 59ms 57ms -3% z=-3.2
dom-widget-clipping: TBT 0ms 0ms +0%
dom-widget-clipping: heap used 54.8 MB 55.9 MB +2%
dom-widget-clipping: DOM nodes 16 16 +0% z=-4.3
dom-widget-clipping: event listeners 0 0 +0% variance too high
large-graph-idle: avg frame time 17ms 17ms -0% z=-1.0
large-graph-idle: p95 frame time 17ms 17ms +0%
large-graph-idle: layout duration 0ms 0ms +0%
large-graph-idle: style recalc duration 8ms 9ms +5% z=-3.3
large-graph-idle: layout count 0 0 +0%
large-graph-idle: style recalc count 9 9 +0% z=-8.3
large-graph-idle: task duration 583ms 550ms -6% z=0.2
large-graph-idle: script duration 94ms 97ms +3% z=-0.5
large-graph-idle: TBT 0ms 0ms +0%
large-graph-idle: heap used 58.0 MB 66.4 MB +14%
large-graph-idle: DOM nodes -261 -262 +0% z=-317.2
large-graph-idle: event listeners -129 -129 +0% z=-25.4
large-graph-pan: avg frame time 17ms 17ms +0% z=0.3
large-graph-pan: p95 frame time 17ms 17ms -0%
large-graph-pan: layout duration 0ms 0ms +0%
large-graph-pan: style recalc duration 19ms 18ms -6% z=0.3
large-graph-pan: layout count 0 0 +0%
large-graph-pan: style recalc count 68 68 +0% z=-2.4
large-graph-pan: task duration 1094ms 1087ms -1% z=0.1
large-graph-pan: script duration 378ms 391ms +4% z=-0.8
large-graph-pan: TBT 0ms 0ms +0%
large-graph-pan: heap used 61.7 MB 55.5 MB -10%
large-graph-pan: DOM nodes -265 -266 +0% z=-172.7
large-graph-pan: event listeners -129 -127 -2% z=-159.3
large-graph-zoom: avg frame time 17ms 17ms +0%
large-graph-zoom: p95 frame time 17ms 17ms -1%
large-graph-zoom: layout duration 8ms 7ms -13%
large-graph-zoom: style recalc duration 19ms 17ms -10%
large-graph-zoom: layout count 60 60 +0%
large-graph-zoom: style recalc count 65 64 -2%
large-graph-zoom: task duration 1340ms 1363ms +2%
large-graph-zoom: script duration 494ms 512ms +4%
large-graph-zoom: TBT 0ms 0ms +0%
large-graph-zoom: heap used 69.3 MB 66.3 MB -4%
large-graph-zoom: DOM nodes -270 -269 -0%
large-graph-zoom: event listeners -125 -125 +0%
minimap-idle: avg frame time 17ms 17ms +0% z=0.1
minimap-idle: p95 frame time 17ms 17ms +0%
minimap-idle: layout duration 0ms 0ms +0%
minimap-idle: style recalc duration 8ms 9ms +17% z=-0.9
minimap-idle: layout count 0 0 +0%
minimap-idle: style recalc count 8 9 +13% z=-0.8
minimap-idle: task duration 598ms 538ms -10% z=0.2
minimap-idle: script duration 97ms 98ms +1% z=-0.0
minimap-idle: TBT 0ms 0ms +0%
minimap-idle: heap used 62.0 MB 72.0 MB +16%
minimap-idle: DOM nodes -265 -262 -1% z=-205.6
minimap-idle: event listeners -129 -127 -2% z=-199.3
subgraph-dom-widget-clipping: avg frame time 17ms 17ms +0% z=0.1
subgraph-dom-widget-clipping: p95 frame time 17ms 17ms -1%
subgraph-dom-widget-clipping: layout duration 0ms 0ms +0%
subgraph-dom-widget-clipping: style recalc duration 11ms 10ms -4% z=-2.4
subgraph-dom-widget-clipping: layout count 0 0 +0%
subgraph-dom-widget-clipping: style recalc count 46 46 +0% z=-3.3
subgraph-dom-widget-clipping: task duration 367ms 346ms -6% z=-1.7
subgraph-dom-widget-clipping: script duration 130ms 117ms -10% z=-1.8
subgraph-dom-widget-clipping: TBT 0ms 0ms +0%
subgraph-dom-widget-clipping: heap used 54.8 MB 55.1 MB +0%
subgraph-dom-widget-clipping: DOM nodes 18 17 -6% z=-4.6
subgraph-dom-widget-clipping: event listeners 6 6 +0% z=-1.7
subgraph-idle: avg frame time 17ms 17ms -0% z=-0.7
subgraph-idle: p95 frame time 17ms 17ms -1%
subgraph-idle: layout duration 0ms 0ms +0%
subgraph-idle: style recalc duration 9ms 8ms -13% z=-3.2
subgraph-idle: layout count 0 0 +0%
subgraph-idle: style recalc count 9 8 -11% z=-4.4
subgraph-idle: task duration 362ms 333ms -8% z=-1.2
subgraph-idle: script duration 16ms 15ms -6% z=-2.0
subgraph-idle: TBT 0ms 0ms +0%
subgraph-idle: heap used 68.5 MB 67.6 MB -1%
subgraph-idle: DOM nodes 18 16 -11% z=-3.9
subgraph-idle: event listeners 4 4 +0% variance too high
subgraph-mouse-sweep: avg frame time 17ms 17ms +0% z=0.4
subgraph-mouse-sweep: p95 frame time 17ms 17ms +0%
subgraph-mouse-sweep: layout duration 4ms 4ms -0% z=-1.0
subgraph-mouse-sweep: style recalc duration 38ms 37ms -1% z=-1.5
subgraph-mouse-sweep: layout count 16 16 +0%
subgraph-mouse-sweep: style recalc count 75 75 +0% z=-2.7
subgraph-mouse-sweep: task duration 723ms 668ms -8% z=-1.4
subgraph-mouse-sweep: script duration 95ms 95ms +0% z=-0.9
subgraph-mouse-sweep: TBT 0ms 0ms +0%
subgraph-mouse-sweep: heap used 48.2 MB 60.4 MB +25%
subgraph-mouse-sweep: DOM nodes -265 60 -123% z=-3.1
subgraph-mouse-sweep: event listeners -131 4 -103% variance too high
viewport-pan-sweep: avg frame time 17ms 17ms +0%
viewport-pan-sweep: p95 frame time 17ms 17ms -1%
viewport-pan-sweep: layout duration 0ms 0ms +0%
viewport-pan-sweep: style recalc duration 59ms 51ms -13%
viewport-pan-sweep: layout count 0 0 +0%
viewport-pan-sweep: style recalc count 250 250 +0%
viewport-pan-sweep: task duration 3880ms 3711ms -4%
viewport-pan-sweep: script duration 1329ms 1244ms -6%
viewport-pan-sweep: TBT 0ms 0ms +0%
viewport-pan-sweep: heap used 73.3 MB 66.7 MB -9%
viewport-pan-sweep: DOM nodes -264 -259 -2%
viewport-pan-sweep: event listeners -113 -113 +0%
vue-large-graph-idle: avg frame time 18ms 17ms -3%
vue-large-graph-idle: p95 frame time 17ms 17ms +0%
vue-large-graph-idle: layout duration 0ms 0ms +0%
vue-large-graph-idle: style recalc duration 0ms 0ms +0%
vue-large-graph-idle: layout count 0 0 +0%
vue-large-graph-idle: style recalc count 0 0 +0%
vue-large-graph-idle: task duration 13290ms 12162ms -8%
vue-large-graph-idle: script duration 650ms 624ms -4%
vue-large-graph-idle: TBT 0ms 0ms +0%
vue-large-graph-idle: heap used 162.7 MB 162.9 MB +0%
vue-large-graph-idle: DOM nodes -8331 -8331 +0%
vue-large-graph-idle: event listeners -16461 -16464 +0%
vue-large-graph-pan: avg frame time 17ms 17ms +0%
vue-large-graph-pan: p95 frame time 17ms 17ms +0%
vue-large-graph-pan: layout duration 0ms 0ms +0%
vue-large-graph-pan: style recalc duration 20ms 16ms -21%
vue-large-graph-pan: layout count 0 0 +0%
vue-large-graph-pan: style recalc count 77 66 -14%
vue-large-graph-pan: task duration 15451ms 14241ms -8%
vue-large-graph-pan: script duration 890ms 863ms -3%
vue-large-graph-pan: TBT 0ms 0ms +0%
vue-large-graph-pan: heap used 166.2 MB 166.6 MB +0%
vue-large-graph-pan: DOM nodes -8331 -8331 +0%
vue-large-graph-pan: event listeners -16488 -16460 -0%
workflow-execution: avg frame time 17ms 17ms +0% z=0.6
workflow-execution: p95 frame time 17ms 17ms +1%
workflow-execution: layout duration 2ms 1ms -23% z=-1.7
workflow-execution: style recalc duration 24ms 24ms +1% z=-0.2
workflow-execution: layout count 5 5 +0% z=0.1
workflow-execution: style recalc count 18 18 +0% z=0.1
workflow-execution: task duration 126ms 133ms +5% z=0.9
workflow-execution: script duration 25ms 24ms -2% z=-1.6
workflow-execution: TBT 0ms 0ms +0%
workflow-execution: heap used 52.4 MB 52.6 MB +0%
workflow-execution: DOM nodes 166 157 -5% z=-0.5
workflow-execution: event listeners 69 69 +0% z=3.9
Historical variance (last 15 runs)
Metric μ σ CV
canvas-idle: avg frame time 17ms 0ms 0.0%
canvas-idle: layout duration 0ms 0ms 0.0%
canvas-idle: style recalc duration 11ms 1ms 8.2%
canvas-idle: layout count 0 0 0.0%
canvas-idle: style recalc count 11 1 5.0%
canvas-idle: task duration 395ms 31ms 7.9%
canvas-idle: script duration 25ms 2ms 8.8%
canvas-idle: TBT 0ms 0ms 0.0%
canvas-idle: DOM nodes 23 1 5.6%
canvas-idle: event listeners 12 5 40.9%
canvas-mouse-sweep: avg frame time 17ms 0ms 0.0%
canvas-mouse-sweep: layout duration 4ms 0ms 5.4%
canvas-mouse-sweep: style recalc duration 43ms 3ms 7.4%
canvas-mouse-sweep: layout count 12 0 0.0%
canvas-mouse-sweep: style recalc count 79 2 3.0%
canvas-mouse-sweep: task duration 865ms 58ms 6.7%
canvas-mouse-sweep: script duration 136ms 6ms 4.8%
canvas-mouse-sweep: TBT 0ms 0ms 0.0%
canvas-mouse-sweep: DOM nodes 62 3 4.2%
canvas-mouse-sweep: event listeners 8 4 49.4%
canvas-zoom-sweep: avg frame time 17ms 0ms 0.0%
canvas-zoom-sweep: layout duration 1ms 0ms 7.0%
canvas-zoom-sweep: style recalc duration 19ms 2ms 8.0%
canvas-zoom-sweep: layout count 6 0 0.0%
canvas-zoom-sweep: style recalc count 31 0 1.5%
canvas-zoom-sweep: task duration 327ms 23ms 7.1%
canvas-zoom-sweep: script duration 27ms 3ms 11.1%
canvas-zoom-sweep: TBT 0ms 0ms 0.0%
canvas-zoom-sweep: DOM nodes 79 1 1.0%
canvas-zoom-sweep: event listeners 24 5 21.8%
dom-widget-clipping: avg frame time 17ms 0ms 0.0%
dom-widget-clipping: layout duration 0ms 0ms 0.0%
dom-widget-clipping: style recalc duration 10ms 1ms 8.0%
dom-widget-clipping: layout count 0 0 0.0%
dom-widget-clipping: style recalc count 13 0 3.8%
dom-widget-clipping: task duration 365ms 16ms 4.5%
dom-widget-clipping: script duration 68ms 3ms 4.8%
dom-widget-clipping: TBT 0ms 0ms 0.0%
dom-widget-clipping: DOM nodes 22 1 6.4%
dom-widget-clipping: event listeners 8 6 81.2%
large-graph-idle: avg frame time 17ms 0ms 0.0%
large-graph-idle: layout duration 0ms 0ms 0.0%
large-graph-idle: style recalc duration 12ms 1ms 8.6%
large-graph-idle: layout count 0 0 0.0%
large-graph-idle: style recalc count 12 0 2.7%
large-graph-idle: task duration 542ms 54ms 10.0%
large-graph-idle: script duration 102ms 11ms 10.3%
large-graph-idle: TBT 0ms 0ms 0.0%
large-graph-idle: DOM nodes 25 1 3.7%
large-graph-idle: event listeners 26 6 23.2%
large-graph-pan: avg frame time 17ms 0ms 0.0%
large-graph-pan: layout duration 0ms 0ms 0.0%
large-graph-pan: style recalc duration 17ms 1ms 4.6%
large-graph-pan: layout count 0 0 0.0%
large-graph-pan: style recalc count 70 1 0.9%
large-graph-pan: task duration 1082ms 43ms 4.0%
large-graph-pan: script duration 408ms 20ms 4.8%
large-graph-pan: TBT 0ms 0ms 0.0%
large-graph-pan: DOM nodes 19 2 8.7%
large-graph-pan: event listeners 5 1 16.8%
minimap-idle: avg frame time 17ms 0ms 0.0%
minimap-idle: layout duration 0ms 0ms 0.0%
minimap-idle: style recalc duration 10ms 1ms 8.6%
minimap-idle: layout count 0 0 0.0%
minimap-idle: style recalc count 10 1 7.1%
minimap-idle: task duration 527ms 47ms 9.0%
minimap-idle: script duration 98ms 10ms 10.1%
minimap-idle: TBT 0ms 0ms 0.0%
minimap-idle: DOM nodes 19 1 7.1%
minimap-idle: event listeners 5 1 14.4%
subgraph-dom-widget-clipping: avg frame time 17ms 0ms 0.0%
subgraph-dom-widget-clipping: layout duration 0ms 0ms 0.0%
subgraph-dom-widget-clipping: style recalc duration 13ms 1ms 7.4%
subgraph-dom-widget-clipping: layout count 0 0 0.0%
subgraph-dom-widget-clipping: style recalc count 48 1 1.2%
subgraph-dom-widget-clipping: task duration 378ms 18ms 4.9%
subgraph-dom-widget-clipping: script duration 128ms 6ms 4.9%
subgraph-dom-widget-clipping: TBT 0ms 0ms 0.0%
subgraph-dom-widget-clipping: DOM nodes 22 1 5.0%
subgraph-dom-widget-clipping: event listeners 16 6 36.0%
subgraph-idle: avg frame time 17ms 0ms 0.0%
subgraph-idle: layout duration 0ms 0ms 0.0%
subgraph-idle: style recalc duration 10ms 1ms 7.5%
subgraph-idle: layout count 0 0 0.0%
subgraph-idle: style recalc count 11 1 6.0%
subgraph-idle: task duration 370ms 31ms 8.5%
subgraph-idle: script duration 20ms 3ms 13.2%
subgraph-idle: TBT 0ms 0ms 0.0%
subgraph-idle: DOM nodes 22 1 6.9%
subgraph-idle: event listeners 10 7 64.5%
subgraph-mouse-sweep: avg frame time 17ms 0ms 0.0%
subgraph-mouse-sweep: layout duration 5ms 0ms 6.8%
subgraph-mouse-sweep: style recalc duration 42ms 3ms 7.8%
subgraph-mouse-sweep: layout count 16 0 0.0%
subgraph-mouse-sweep: style recalc count 80 2 2.4%
subgraph-mouse-sweep: task duration 766ms 69ms 9.0%
subgraph-mouse-sweep: script duration 101ms 7ms 6.5%
subgraph-mouse-sweep: TBT 0ms 0ms 0.0%
subgraph-mouse-sweep: DOM nodes 67 2 3.3%
subgraph-mouse-sweep: event listeners 8 4 52.6%
workflow-execution: avg frame time 17ms 0ms 0.0%
workflow-execution: layout duration 2ms 0ms 9.4%
workflow-execution: style recalc duration 24ms 2ms 9.1%
workflow-execution: layout count 5 1 11.0%
workflow-execution: style recalc count 18 2 11.5%
workflow-execution: task duration 123ms 11ms 8.8%
workflow-execution: script duration 29ms 3ms 10.2%
workflow-execution: TBT 0ms 0ms 0.0%
workflow-execution: DOM nodes 161 7 4.4%
workflow-execution: event listeners 52 4 8.4%
Trend (last 15 commits on main)
Metric Trend Dir Latest
canvas-idle: avg frame time ▆▃▆▁▆▃▆█▆▆▄▃▃▄▃ ➡️ 17ms
canvas-idle: p95 frame time ➡️ NaNms
canvas-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: style recalc duration ▇▇▆▆▃█▄▃▄▃▇▄▁▆▇ ➡️ 11ms
canvas-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
canvas-idle: style recalc count █▃▅▂▅▆▃▁▂▁▂▅▆▅▆ ➡️ 12
canvas-idle: task duration ▃▃▃▆▂▃▃▅▆▂█▃▁▃▃ ➡️ 391ms
canvas-idle: script duration ▄▃▅▇▂▅▃▆▇▅█▄▁▅▆ ➡️ 27ms
canvas-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-idle: heap used ➡️ NaN MB
canvas-idle: DOM nodes █▇▆▅▃▇▃▁▂▂▅▆▆▆▇ ➡️ 24
canvas-idle: event listeners ▅█▅▄▁▅▁▁▁▄▅▅▁▅▄ 📉 11
canvas-mouse-sweep: avg frame time ▆█▆▃▁▃▁▆▆▁▃▆▆▃▃ ➡️ 17ms
canvas-mouse-sweep: p95 frame time ➡️ NaNms
canvas-mouse-sweep: layout duration ▁▃▂▄▁▂▁▃▆▂█▇▆▄▃ ➡️ 4ms
canvas-mouse-sweep: style recalc duration ▄▄▂▄▁▂▃▃▅▄█▆▂▄▄ ➡️ 43ms
canvas-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 12
canvas-mouse-sweep: style recalc count █▅▄▃▂▂▁▄▄▅▆▅▂▇▄ ➡️ 79
canvas-mouse-sweep: task duration █▆▄▂▂▃▂▄▄▅█▆▁▆▄ ➡️ 868ms
canvas-mouse-sweep: script duration ▄▅▄▆▄▆▆▆▅▅█▆▁▅▆ ➡️ 139ms
canvas-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-mouse-sweep: heap used ➡️ NaN MB
canvas-mouse-sweep: DOM nodes █▅▃▃▁▂▂▃▂▄▆▅▃▅▅ ➡️ 64
canvas-mouse-sweep: event listeners █▁▁▁▁▁▇▁▁▁██▇▁█ 📈 13
canvas-zoom-sweep: avg frame time ▅▅█▄▅▁▁▁▅▁▁▅▄▅▁ ➡️ 17ms
canvas-zoom-sweep: p95 frame time ➡️ NaNms
canvas-zoom-sweep: layout duration ▆▅▅▄▁▁█▅▃▅▇▆▁▂▆ ➡️ 1ms
canvas-zoom-sweep: style recalc duration ▆▅▄▆▅▃█▆▇▅▇▄▁▃▅ ➡️ 20ms
canvas-zoom-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 6
canvas-zoom-sweep: style recalc count ▁▁▃▄▆▃▆█▄▄▆▁▆▁▆ ➡️ 32
canvas-zoom-sweep: task duration ▄▂▁▇▂▂▄▅▆▃█▄▁▁▅ ➡️ 338ms
canvas-zoom-sweep: script duration ▃▃▂▇▂▂▅▇▆▅█▄▁▂▆ ➡️ 30ms
canvas-zoom-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
canvas-zoom-sweep: heap used ➡️ NaN MB
canvas-zoom-sweep: DOM nodes ▄▃▁▅█▁▃▆▄▅▅▃▃▄▃ ➡️ 79
canvas-zoom-sweep: event listeners ▁▁▂▅█▂▁▅▁▅▅▄▁▅▁ ➡️ 19
dom-widget-clipping: avg frame time ▂▄▅▅▂▄█▇▅▇▇▅▅▁▇ ➡️ 17ms
dom-widget-clipping: p95 frame time ➡️ NaNms
dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: style recalc duration ▆▆▂▆▄▃██▄▁▆▇▆▃▅ ➡️ 10ms
dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
dom-widget-clipping: style recalc count ▇█▅█▅▄█▇▇▁▇▄▇▂▅ ➡️ 13
dom-widget-clipping: task duration ▃▃▁▅▄▃▅▆▅▂▇█▁▅▅ ➡️ 371ms
dom-widget-clipping: script duration ▅▄▄▆▆▅▇▇▆▃█▇▁▇▇ ➡️ 71ms
dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
dom-widget-clipping: heap used ➡️ NaN MB
dom-widget-clipping: DOM nodes ▇▇▄▇▅▄█▇▅▁▅▄▇▃▄ ➡️ 21
dom-widget-clipping: event listeners ▅▅▅▅▁▅██▁▁▁▁█▁▁ 📉 2
large-graph-idle: avg frame time ▅▅▅▅▅▂▁▂▄▅▄▂▂▅█ ➡️ 17ms
large-graph-idle: p95 frame time ➡️ NaNms
large-graph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: style recalc duration ▅▅▅▆▄▅▃▄▅▅▆█▁▄▆ ➡️ 13ms
large-graph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-idle: style recalc count █▆█▃▃▁▃▆▃▆▆▃▆██ ➡️ 12
large-graph-idle: task duration ▂▃▂▆▂▃▃▇▅▃██▁▂▅ ➡️ 569ms
large-graph-idle: script duration ▄▅▄▆▄▅▅▇▆▅█▆▁▃▆ ➡️ 110ms
large-graph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-idle: heap used ➡️ NaN MB
large-graph-idle: DOM nodes ▆█▅▂▅▃▁▂▃▅▅▆▂▆▅ ➡️ 25
large-graph-idle: event listeners ███▇██▄▁▄▇▇█▂█▇ ➡️ 29
large-graph-pan: avg frame time ▆▃▃▆█▃▁█▆▆▆▆█▁▆ ➡️ 17ms
large-graph-pan: p95 frame time ➡️ NaNms
large-graph-pan: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: style recalc duration ▃▂▄▄▁▅▂▂▁▄▄█▃▁▂ ➡️ 17ms
large-graph-pan: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
large-graph-pan: style recalc count ▆▃█▂▃▂▂▂▁▇▅▃█▆▃ ➡️ 69
large-graph-pan: task duration ▄▃▄▆▄▄▄▆▄▄█▆▁▂▅ ➡️ 1100ms
large-graph-pan: script duration ▅▄▅▆▆▅▄▆▄▅█▄▁▄▅ ➡️ 413ms
large-graph-pan: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
large-graph-pan: heap used ➡️ NaN MB
large-graph-pan: DOM nodes ▅▃▆▂▄▁▃▁▁▅▁▂█▅▂ ➡️ 18
large-graph-pan: event listeners █▆█▁▁▆▁▁▃▆▁▃██▃ ➡️ 5
minimap-idle: avg frame time ▃▆▆▃█▁█▆▆▃▃▆█▆█ ➡️ 17ms
minimap-idle: p95 frame time ➡️ NaNms
minimap-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: style recalc duration ▄█▁█▅▅█▅▅▃▅▁▁▄▆ ➡️ 10ms
minimap-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
minimap-idle: style recalc count ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 9
minimap-idle: task duration ▃▄▁▅▁▃▄▅▇▃█▅▁▁▅ ➡️ 547ms
minimap-idle: script duration ▄▆▃▇▃▅▆▆▇▅█▅▁▃▆ ➡️ 106ms
minimap-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
minimap-idle: heap used ➡️ NaN MB
minimap-idle: DOM nodes ▃▅▂▄█▃▆▁▂▅▂▁▅▆▃ ➡️ 19
minimap-idle: event listeners ▃▃▆▁▁▁▃▁▁▆▁▃█▆▁ ➡️ 4
subgraph-dom-widget-clipping: avg frame time ▅▄▄▄▄▄█▄▄▄▃▁▆▃▃ ➡️ 17ms
subgraph-dom-widget-clipping: p95 frame time ➡️ NaNms
subgraph-dom-widget-clipping: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: style recalc duration ▂▄▃▅▅▃▂▅▇▃▄█▁▄▆ ➡️ 14ms
subgraph-dom-widget-clipping: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-dom-widget-clipping: style recalc count ▇█▆▃▆▃▁▆█▇▃▆▇█▅ ➡️ 48
subgraph-dom-widget-clipping: task duration ▂▃▃▆▅▅▂▅█▂▆█▁▂▇ ➡️ 398ms
subgraph-dom-widget-clipping: script duration ▃▃▃▄▅▅▂▄█▂▅▇▁▂▅ ➡️ 131ms
subgraph-dom-widget-clipping: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-dom-widget-clipping: heap used ➡️ NaN MB
subgraph-dom-widget-clipping: DOM nodes ▅▇▅▂▅▂▁▅▅▅▁▇▅█▄ ➡️ 22
subgraph-dom-widget-clipping: event listeners ▅▅▅▂▅▁▅██▁▁█▅█▅ 📈 16
subgraph-idle: avg frame time ▆▆█▁▆▃▆▆▆▃▆▁▃▆█ ➡️ 17ms
subgraph-idle: p95 frame time ➡️ NaNms
subgraph-idle: layout duration ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: style recalc duration ▁▇▃▆▂▄▂▃▃▆▆▄▃▇█ ➡️ 12ms
subgraph-idle: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0
subgraph-idle: style recalc count ▃▆▃▃▂▅▁▂▁▆▃▃██▇ ➡️ 12
subgraph-idle: task duration ▁▃▁▇▁▁▃▆▅▂█▅▁▁▄ ➡️ 378ms
subgraph-idle: script duration ▁▃▂▇▁▂▃▇▆▂█▅▂▁▅ ➡️ 22ms
subgraph-idle: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-idle: heap used ➡️ NaN MB
subgraph-idle: DOM nodes ▃▅▃▂▁▄▁▂▁▅▃▂▇█▇ ➡️ 24
subgraph-idle: event listeners ▁▅▁▁▁▁▁▁▁▅▄▁███ 📈 21
subgraph-mouse-sweep: avg frame time ▅▄▁▃▃▄▆▄▆▃▃█▁▃▃ ➡️ 17ms
subgraph-mouse-sweep: p95 frame time ➡️ NaNms
subgraph-mouse-sweep: layout duration ▁▄▄▄▃▃▅▅▅▂█▇▂▃▆ ➡️ 5ms
subgraph-mouse-sweep: style recalc duration ▃▂▄▅▂▃▄▅█▃█▆▁▂▅ ➡️ 43ms
subgraph-mouse-sweep: layout count ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 16
subgraph-mouse-sweep: style recalc count ▅▂▅▅▁▄▃▅█▅▆▄▂▄▅ ➡️ 81
subgraph-mouse-sweep: task duration ▃▂▄▅▂▄▄▅▇▄█▆▁▃▅ ➡️ 785ms
subgraph-mouse-sweep: script duration ▄▅▄▇▅▅▆▇▆▅██▁▄▆ ➡️ 105ms
subgraph-mouse-sweep: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
subgraph-mouse-sweep: heap used ➡️ NaN MB
subgraph-mouse-sweep: DOM nodes ▅▁▄▅▁▄▃▃█▅▅▄▂▅▃ ➡️ 66
subgraph-mouse-sweep: event listeners ▇▁▂▇▁▂▂▂█▇▂▂▇▇▂ 📈 5
workflow-execution: avg frame time ▆▆▆▄▆▆▃▄▁▄█▆▅▄▆ ➡️ 17ms
workflow-execution: p95 frame time ➡️ NaNms
workflow-execution: layout duration ▁▆▁▃▂▄▃▂▃▃▅█▄▂▅ ➡️ 2ms
workflow-execution: style recalc duration ▃▇▅▇▁▅▆▇█▁██▂▄▆ ➡️ 25ms
workflow-execution: layout count ▁█▂▃▂▃▃▁▃▃▄▃▂▃▂ ➡️ 5
workflow-execution: style recalc count ▃█▅▇▁▄▅▆▅▅▅▅▄▄▂ ➡️ 15
workflow-execution: task duration ▂▅▄▅▁▄▆▆▆▁▇█▁▃▃ ➡️ 120ms
workflow-execution: script duration ▄▃▄▄▃▅▄▅▆▂▇█▁▃▄ ➡️ 29ms
workflow-execution: TBT ▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄ ➡️ 0ms
workflow-execution: heap used ➡️ NaN MB
workflow-execution: DOM nodes ▂█▃▆▁▄▃▅▃█▃▃▄▃▁ ➡️ 152
workflow-execution: event listeners ▅███▁▅███▁██▅█▅ ➡️ 49
Raw data
{
  "timestamp": "2026-05-04T06:50:46.926Z",
  "gitSha": "7a71f002ae9c350b41046fd386f91ab79a5b12ed",
  "branch": "glary/responsive-media-tooling",
  "measurements": [
    {
      "name": "canvas-idle",
      "durationMs": 2013.6909999999943,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.386999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 379.45199999999994,
      "heapDeltaBytes": 23427508,
      "heapUsedBytes": 71692116,
      "domNodes": 18,
      "jsHeapTotalBytes": 14680064,
      "scriptDurationMs": 16.826999999999995,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-idle",
      "durationMs": 2008.1610000000296,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.498999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 347.405,
      "heapDeltaBytes": 23407524,
      "heapUsedBytes": 71692180,
      "domNodes": 17,
      "jsHeapTotalBytes": 15466496,
      "scriptDurationMs": 16.330000000000002,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-idle",
      "durationMs": 2030.33999999991,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.574,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 350.92,
      "heapDeltaBytes": 22806484,
      "heapUsedBytes": 71543672,
      "domNodes": 18,
      "jsHeapTotalBytes": 15466496,
      "scriptDurationMs": 17.282000000000007,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1962.5800000000027,
      "styleRecalcs": 78,
      "styleRecalcDurationMs": 43.866,
      "layouts": 12,
      "layoutDurationMs": 5.709,
      "taskDurationMs": 846.6289999999999,
      "heapDeltaBytes": -5078436,
      "heapUsedBytes": 43871928,
      "domNodes": -266,
      "jsHeapTotalBytes": 15855616,
      "scriptDurationMs": 128.589,
      "eventListeners": -133,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1798.7660000000005,
      "styleRecalcs": 73,
      "styleRecalcDurationMs": 33.62800000000001,
      "layouts": 12,
      "layoutDurationMs": 3.2050000000000005,
      "taskDurationMs": 785.119,
      "heapDeltaBytes": -3505612,
      "heapUsedBytes": 45200556,
      "domNodes": -264,
      "jsHeapTotalBytes": 15331328,
      "scriptDurationMs": 128.466,
      "eventListeners": -133,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-mouse-sweep",
      "durationMs": 1772.6109999999835,
      "styleRecalcs": 74,
      "styleRecalcDurationMs": 35.215,
      "layouts": 12,
      "layoutDurationMs": 3.236,
      "taskDurationMs": 763.067,
      "heapDeltaBytes": 7857976,
      "heapUsedBytes": 56139196,
      "domNodes": -263,
      "jsHeapTotalBytes": 15593472,
      "scriptDurationMs": 124.68099999999998,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1717.488000000003,
      "styleRecalcs": 30,
      "styleRecalcDurationMs": 15.258999999999999,
      "layouts": 6,
      "layoutDurationMs": 0.5249999999999999,
      "taskDurationMs": 291.69800000000004,
      "heapDeltaBytes": 189952,
      "heapUsedBytes": 48886492,
      "domNodes": 75,
      "jsHeapTotalBytes": 15466496,
      "scriptDurationMs": 18.309000000000005,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1753.0549999999607,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 19.919,
      "layouts": 6,
      "layoutDurationMs": 0.6299999999999999,
      "taskDurationMs": 308.952,
      "heapDeltaBytes": -101604,
      "heapUsedBytes": 48109144,
      "domNodes": 77,
      "jsHeapTotalBytes": 15466496,
      "scriptDurationMs": 19.752,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "canvas-zoom-sweep",
      "durationMs": 1753.7740000000213,
      "styleRecalcs": 32,
      "styleRecalcDurationMs": 19.665,
      "layouts": 6,
      "layoutDurationMs": 0.7050000000000001,
      "taskDurationMs": 322.897,
      "heapDeltaBytes": 205080,
      "heapUsedBytes": 48878696,
      "domNodes": 78,
      "jsHeapTotalBytes": 14942208,
      "scriptDurationMs": 21.618,
      "eventListeners": 19,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 552.9389999999808,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 7.563000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 324.003,
      "heapDeltaBytes": 8550444,
      "heapUsedBytes": 57163896,
      "domNodes": 16,
      "jsHeapTotalBytes": 15466496,
      "scriptDurationMs": 56.65400000000001,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 583.6630000000014,
      "styleRecalcs": 12,
      "styleRecalcDurationMs": 11.367000000000003,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 353.4240000000001,
      "heapDeltaBytes": 9784708,
      "heapUsedBytes": 58705992,
      "domNodes": 20,
      "jsHeapTotalBytes": 15204352,
      "scriptDurationMs": 64.976,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666682,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "dom-widget-clipping",
      "durationMs": 528.4450000000334,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 6.970999999999998,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 325.61899999999997,
      "heapDeltaBytes": 9420040,
      "heapUsedBytes": 58658072,
      "domNodes": 15,
      "jsHeapTotalBytes": 15204352,
      "scriptDurationMs": 57.31900000000001,
      "eventListeners": 0,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2072.8129999999965,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.642999999999997,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 550.371,
      "heapDeltaBytes": 14095716,
      "heapUsedBytes": 72166532,
      "domNodes": -262,
      "jsHeapTotalBytes": 290816,
      "scriptDurationMs": 97.103,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2012.7110000000243,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 8.811,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 532.0229999999999,
      "heapDeltaBytes": 2754340,
      "heapUsedBytes": 61288912,
      "domNodes": -263,
      "jsHeapTotalBytes": 28672,
      "scriptDurationMs": 93.2,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-idle",
      "durationMs": 2037.0220000000927,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 9.440999999999997,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 567.298,
      "heapDeltaBytes": 12571752,
      "heapUsedBytes": 69596852,
      "domNodes": -260,
      "jsHeapTotalBytes": 28672,
      "scriptDurationMs": 106.215,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2141.42099999998,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 17.907,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1099.966,
      "heapDeltaBytes": 18400664,
      "heapUsedBytes": 78906240,
      "domNodes": -266,
      "jsHeapTotalBytes": 4718592,
      "scriptDurationMs": 400.31600000000003,
      "eventListeners": -129,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2133.5540000000037,
      "styleRecalcs": 67,
      "styleRecalcDurationMs": 16.791,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1087.211,
      "heapDeltaBytes": -1368248,
      "heapUsedBytes": 58180748,
      "domNodes": -267,
      "jsHeapTotalBytes": 6262784,
      "scriptDurationMs": 391.32,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "large-graph-pan",
      "durationMs": 2145.77799999995,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 17.553,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 1078.0320000000002,
      "heapDeltaBytes": -5926816,
      "heapUsedBytes": 53497596,
      "domNodes": -264,
      "jsHeapTotalBytes": 5533696,
      "scriptDurationMs": 384.344,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3167.5409999999715,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 17.123999999999995,
      "layouts": 60,
      "layoutDurationMs": 7.172,
      "taskDurationMs": 1362.715,
      "heapDeltaBytes": -8297548,
      "heapUsedBytes": 53784224,
      "domNodes": -269,
      "jsHeapTotalBytes": 4542464,
      "scriptDurationMs": 511.806,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3178.437000000031,
      "styleRecalcs": 65,
      "styleRecalcDurationMs": 18.209,
      "layouts": 60,
      "layoutDurationMs": 7.420000000000001,
      "taskDurationMs": 1366.8280000000002,
      "heapDeltaBytes": 9293288,
      "heapUsedBytes": 70376028,
      "domNodes": -269,
      "jsHeapTotalBytes": 28672,
      "scriptDurationMs": 521.887,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "large-graph-zoom",
      "durationMs": 3119.8770000000877,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 16.735999999999997,
      "layouts": 60,
      "layoutDurationMs": 7.292,
      "taskDurationMs": 1319.452,
      "heapDeltaBytes": 8274316,
      "heapUsedBytes": 69498512,
      "domNodes": -270,
      "jsHeapTotalBytes": 4485120,
      "scriptDurationMs": 491.08799999999997,
      "eventListeners": -125,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2036.245000000008,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 8.828,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 532.551,
      "heapDeltaBytes": 14605244,
      "heapUsedBytes": 75856544,
      "domNodes": -262,
      "jsHeapTotalBytes": 3756032,
      "scriptDurationMs": 92.86100000000002,
      "eventListeners": -131,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2026.7999999999802,
      "styleRecalcs": 6,
      "styleRecalcDurationMs": 5.891,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 538.4290000000001,
      "heapDeltaBytes": 10208288,
      "heapUsedBytes": 71289000,
      "domNodes": -270,
      "jsHeapTotalBytes": 28672,
      "scriptDurationMs": 98.128,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66999999999998,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "minimap-idle",
      "durationMs": 2046.7409999999973,
      "styleRecalcs": 9,
      "styleRecalcDurationMs": 12.077000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 561.171,
      "heapDeltaBytes": 14964788,
      "heapUsedBytes": 75486612,
      "domNodes": -258,
      "jsHeapTotalBytes": -233472,
      "scriptDurationMs": 99.14699999999999,
      "eventListeners": -127,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 533.4170000000427,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 10.442,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 339.1329999999999,
      "heapDeltaBytes": 9482928,
      "heapUsedBytes": 57781096,
      "domNodes": 17,
      "jsHeapTotalBytes": 15204352,
      "scriptDurationMs": 115.371,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 512.6829999999813,
      "styleRecalcs": 46,
      "styleRecalcDurationMs": 10.520000000000001,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 346.47499999999997,
      "heapDeltaBytes": 9062868,
      "heapUsedBytes": 57716240,
      "domNodes": 18,
      "jsHeapTotalBytes": 16252928,
      "scriptDurationMs": 116.90100000000001,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-dom-widget-clipping",
      "durationMs": 550.0090000000455,
      "styleRecalcs": 45,
      "styleRecalcDurationMs": 9.920000000000002,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 351.78299999999996,
      "heapDeltaBytes": 9037672,
      "heapUsedBytes": 57805552,
      "domNodes": 16,
      "jsHeapTotalBytes": 15990784,
      "scriptDurationMs": 129.105,
      "eventListeners": 6,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    },
    {
      "name": "subgraph-idle",
      "durationMs": 1991.1440000000198,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.776999999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 333.28,
      "heapDeltaBytes": 22351540,
      "heapUsedBytes": 70864972,
      "domNodes": 16,
      "jsHeapTotalBytes": 15204352,
      "scriptDurationMs": 13.860999999999992,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 1997.4439999999731,
      "styleRecalcs": 8,
      "styleRecalcDurationMs": 7.906,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 333.19999999999993,
      "heapDeltaBytes": 23269688,
      "heapUsedBytes": 71881376,
      "domNodes": 16,
      "jsHeapTotalBytes": 14680064,
      "scriptDurationMs": 14.999,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-idle",
      "durationMs": 2020.605000000046,
      "styleRecalcs": 10,
      "styleRecalcDurationMs": 10.254,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 363.947,
      "heapDeltaBytes": 22503072,
      "heapUsedBytes": 70928924,
      "domNodes": 19,
      "jsHeapTotalBytes": 14680064,
      "scriptDurationMs": 17.130000000000006,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1675.8449999999812,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 37.842999999999996,
      "layouts": 16,
      "layoutDurationMs": 4.774,
      "taskDurationMs": 668.221,
      "heapDeltaBytes": 14841072,
      "heapUsedBytes": 63317340,
      "domNodes": 60,
      "jsHeapTotalBytes": 15204352,
      "scriptDurationMs": 94.69,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333335,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1673.5410000000002,
      "styleRecalcs": 75,
      "styleRecalcDurationMs": 37.379000000000005,
      "layouts": 16,
      "layoutDurationMs": 4.262999999999999,
      "taskDurationMs": 642.79,
      "heapDeltaBytes": 13930376,
      "heapUsedBytes": 63663088,
      "domNodes": 61,
      "jsHeapTotalBytes": 14680064,
      "scriptDurationMs": 92.219,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "subgraph-mouse-sweep",
      "durationMs": 1681.7810000000009,
      "styleRecalcs": 74,
      "styleRecalcDurationMs": 35.376999999999995,
      "layouts": 16,
      "layoutDurationMs": 4.379,
      "taskDurationMs": 673.119,
      "heapDeltaBytes": 14314720,
      "heapUsedBytes": 62964600,
      "domNodes": 59,
      "jsHeapTotalBytes": 15204352,
      "scriptDurationMs": 96.389,
      "eventListeners": 4,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8131.992000000026,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 51.00599999999999,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3659.866,
      "heapDeltaBytes": 11537400,
      "heapUsedBytes": 68298840,
      "domNodes": -259,
      "jsHeapTotalBytes": 6262784,
      "scriptDurationMs": 1241.95,
      "eventListeners": -113,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.66333333333332,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8140.0409999999965,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 54.307,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3920.646,
      "heapDeltaBytes": 26724776,
      "heapUsedBytes": 85054520,
      "domNodes": -257,
      "jsHeapTotalBytes": 8622080,
      "scriptDurationMs": 1393.5970000000002,
      "eventListeners": -113,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.670000000000012,
      "p95FrameDurationMs": 16.700000000000728
    },
    {
      "name": "viewport-pan-sweep",
      "durationMs": 8152.612999999974,
      "styleRecalcs": 250,
      "styleRecalcDurationMs": 50.538,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 3711.4650000000006,
      "heapDeltaBytes": 11833716,
      "heapUsedBytes": 69968364,
      "domNodes": -263,
      "jsHeapTotalBytes": 6524928,
      "scriptDurationMs": 1244.4550000000002,
      "eventListeners": -113,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.80000000000109
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12174.811000000034,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12161.795,
      "heapDeltaBytes": -25701488,
      "heapUsedBytes": 172467928,
      "domNodes": -8331,
      "jsHeapTotalBytes": 25489408,
      "scriptDurationMs": 636.231,
      "eventListeners": -16464,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.220000000000073,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12149.050999999985,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12136.964,
      "heapDeltaBytes": -23266880,
      "heapUsedBytes": 168149448,
      "domNodes": -8331,
      "jsHeapTotalBytes": 20246528,
      "scriptDurationMs": 600.2890000000001,
      "eventListeners": -16464,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.216666666666665,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-idle",
      "durationMs": 12452.19099999997,
      "styleRecalcs": 0,
      "styleRecalcDurationMs": 0,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 12437.691,
      "heapDeltaBytes": -29075532,
      "heapUsedBytes": 170811660,
      "domNodes": -8331,
      "jsHeapTotalBytes": 23392256,
      "scriptDurationMs": 623.676,
      "eventListeners": -16464,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14094.403999999997,
      "styleRecalcs": 64,
      "styleRecalcDurationMs": 15.699999999999992,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14061.953000000003,
      "heapDeltaBytes": -2687924,
      "heapUsedBytes": 192688408,
      "domNodes": -8331,
      "jsHeapTotalBytes": 26451968,
      "scriptDurationMs": 899.874,
      "eventListeners": -16458,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.223333333333358,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14282.198999999991,
      "styleRecalcs": 66,
      "styleRecalcDurationMs": 15.871000000000024,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14241.290000000003,
      "heapDeltaBytes": -33097820,
      "heapUsedBytes": 165365540,
      "domNodes": -8329,
      "jsHeapTotalBytes": -3346432,
      "scriptDurationMs": 859.5699999999999,
      "eventListeners": -16460,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 17.776666666666642,
      "p95FrameDurationMs": 16.799999999999272
    },
    {
      "name": "vue-large-graph-pan",
      "durationMs": 14558.477000000039,
      "styleRecalcs": 68,
      "styleRecalcDurationMs": 18.05399999999996,
      "layouts": 0,
      "layoutDurationMs": 0,
      "taskDurationMs": 14534.809,
      "heapDeltaBytes": -25149964,
      "heapUsedBytes": 174724196,
      "domNodes": -8335,
      "jsHeapTotalBytes": -2908160,
      "scriptDurationMs": 862.694,
      "eventListeners": -16488,
      "totalBlockingTimeMs": 26,
      "frameDurationMs": 17.219999999999953,
      "p95FrameDurationMs": 16.80000000000291
    },
    {
      "name": "workflow-execution",
      "durationMs": 478.29300000000785,
      "styleRecalcs": 23,
      "styleRecalcDurationMs": 25.913999999999998,
      "layouts": 5,
      "layoutDurationMs": 1.718,
      "taskDurationMs": 136.80200000000002,
      "heapDeltaBytes": 5477544,
      "heapUsedBytes": 55197100,
      "domNodes": 194,
      "jsHeapTotalBytes": 262144,
      "scriptDurationMs": 26.258000000000003,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.663333333333338,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "workflow-execution",
      "durationMs": 471.86199999998735,
      "styleRecalcs": 15,
      "styleRecalcDurationMs": 21.676000000000005,
      "layouts": 5,
      "layoutDurationMs": 1.2989999999999997,
      "taskDurationMs": 132.57899999999998,
      "heapDeltaBytes": -15173576,
      "heapUsedBytes": 51914496,
      "domNodes": 155,
      "jsHeapTotalBytes": 4812800,
      "scriptDurationMs": 24.325,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.800000000000182
    },
    {
      "name": "workflow-execution",
      "durationMs": 452.5979999999663,
      "styleRecalcs": 18,
      "styleRecalcDurationMs": 23.813,
      "layouts": 4,
      "layoutDurationMs": 1.033,
      "taskDurationMs": 116.56699999999998,
      "heapDeltaBytes": 5054644,
      "heapUsedBytes": 56146796,
      "domNodes": 157,
      "jsHeapTotalBytes": 262144,
      "scriptDurationMs": 22.908,
      "eventListeners": 69,
      "totalBlockingTimeMs": 0,
      "frameDurationMs": 16.666666666666668,
      "p95FrameDurationMs": 16.700000000000273
    }
  ]
}

@codecov
Copy link
Copy Markdown

codecov Bot commented May 3, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

@@             Coverage Diff             @@
##             main   #11869       +/-   ##
===========================================
- Coverage   71.79%   56.08%   -15.71%     
===========================================
  Files        1492     1383      -109     
  Lines       85011    70796    -14215     
  Branches    23233    18814     -4419     
===========================================
- Hits        61031    39708    -21323     
- Misses      23091    30561     +7470     
+ Partials      889      527      -362     
Flag Coverage Δ
e2e ?
unit 56.08% <ø> (+0.14%) ⬆️

Flags with carried forward coverage won't be shown. Click here to find out more.
see 992 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@christian-byrne christian-byrne requested review from DrJKL and Yourz May 4, 2026 05:57
@christian-byrne christian-byrne marked this pull request as ready for review May 4, 2026 06:07
@christian-byrne christian-byrne requested a review from a team May 4, 2026 06:07
@dosubot dosubot Bot added the size:L This PR changes 100-499 lines, ignoring generated files. label May 4, 2026
@christian-byrne christian-byrne force-pushed the glary/responsive-media-tooling branch from b62248f to 9ec6640 Compare May 4, 2026 06:07
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@apps/website/scripts/README.md`:
- Around line 27-33: The fenced code block that lists the output files (the
block containing "foo-640.webm   foo-640.mp4" through "foo-poster.jpg") is
missing a language identifier and triggers markdownlint MD040; update the
opening fence from ``` to ```text (or another appropriate language) so the block
becomes a labeled fenced code block (no other content changes required).
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: dd4b40cb-fee8-4b94-aff0-e1c5126be800

📥 Commits

Reviewing files that changed from the base of the PR and between 0491836 and 9ec6640.

📒 Files selected for processing (8)
  • apps/website/scripts/README.md
  • apps/website/scripts/process-videos.sh
  • apps/website/src/assets/marketing/README.md
  • apps/website/src/components/common/SiteVideo.vue
  • apps/website/src/utils/marketingImage.ts
  • apps/website/src/utils/video.test.ts
  • apps/website/src/utils/video.ts
  • knip.config.ts

Comment thread apps/website/scripts/README.md Outdated
Adds a 'text' language identifier to the bare fenced code block listing the script's output files. Satisfies markdownlint MD040 (no markdownlint enforcement in this repo, but small improvement; flagged by CodeRabbit on PR #11869).
@glary-bot glary-bot Bot force-pushed the glary/responsive-media-tooling branch from 9ec6640 to 0b7de9d Compare May 4, 2026 06:17
Copy link
Copy Markdown
Contributor

@coderabbitai coderabbitai Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Inline comments:
In `@apps/website/scripts/process-videos.sh`:
- Around line 90-93: The ffprobe duration parsing can yield non-numeric values
so guard the comparison by validating that the duration variable is a numeric
value before using awk; update the block that assigns duration (the ffprobe
command result stored in the duration variable) to validate or normalize its
output (e.g., check duration matches a numeric/float regex or use awk to coerce
to 0 when non-numeric) and only run the numeric comparison (the current awk
"BEGIN { exit !($duration >= 1.0) }") when duration is numeric, otherwise set
poster_seek=0/skip the comparison so poster_seek is only set when a valid
numeric duration >= 1.0 is confirmed.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: Path: .coderabbit.yaml

Review profile: CHILL

Plan: Pro

Run ID: 190268cb-68b7-4904-874e-6e1f467bdef7

📥 Commits

Reviewing files that changed from the base of the PR and between 9ec6640 and 0b7de9d.

📒 Files selected for processing (8)
  • apps/website/scripts/README.md
  • apps/website/scripts/process-videos.sh
  • apps/website/src/assets/marketing/README.md
  • apps/website/src/components/common/SiteVideo.vue
  • apps/website/src/utils/marketingImage.ts
  • apps/website/src/utils/video.test.ts
  • apps/website/src/utils/video.ts
  • knip.config.ts
✅ Files skipped from review due to trivial changes (4)
  • apps/website/src/utils/marketingImage.ts
  • apps/website/scripts/README.md
  • apps/website/src/assets/marketing/README.md
  • apps/website/src/utils/video.test.ts
🚧 Files skipped from review as they are similar to previous changes (3)
  • knip.config.ts
  • apps/website/src/utils/video.ts
  • apps/website/src/components/common/SiteVideo.vue

Comment thread apps/website/scripts/process-videos.sh Outdated
If ffprobe succeeds but emits a non-numeric value (e.g. N/A for unreadable streams, or empty for containers without duration metadata), the previous `awk "BEGIN { exit !($duration >= 1.0) }"` was a syntax error and aborted the whole script under set -euo pipefail. Validate the raw output against a numeric regex and fall back to 0 otherwise; pass duration into awk via -v to avoid eval-style interpolation. Flagged by CodeRabbit on #11869.
@Yourz Yourz added this pull request to the merge queue May 4, 2026
Merged via the queue into main with commit 65876c6 May 4, 2026
52 checks passed
@Yourz Yourz deleted the glary/responsive-media-tooling branch May 4, 2026 13:39
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

size:L This PR changes 100-499 lines, ignoring generated files.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants