Fix IndexedDb module loading and improve debugging (#32)#33
Merged
robertmclaws merged 8 commits intomainfrom Apr 6, 2026
Merged
Fix IndexedDb module loading and improve debugging (#32)#33robertmclaws merged 8 commits intomainfrom
robertmclaws merged 8 commits intomainfrom
Conversation
Browsers require explicit file extensions for ES module imports. The import of ./generated/idb-version without .js caused a MIME type error at runtime. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Uses the CI environment variable set by GitHub Actions to double the throttle and debounce intervals, giving enough headroom for scheduling jitter on shared runners. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…al wait The throttle test was failing on CI because: (1) the throttle interval was too short relative to scheduling jitter, and (2) the final wait was too short for the last throttle timer to elapse. Uses CI env var to double the throttle interval, and waits throttleInterval*2 at the end. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Timer-based throttle/debounce tests are timing-sensitive and unreliable when competing for threads with parallel test execution on CI runners. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
CI runners can't reliably execute timing-sensitive throttle tests. Skip with Inconclusive when CI=true and use original intervals. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Enables inlineSources in tsconfig so .js.map files contain the full TS source. Consumers can now debug in browser devtools without needing the .ts files on disk. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
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.
Summary
.jsextension inidb-loaderES module import that caused MIME type errors and prevented IndexedDb from loading ([BUG]: BlazorEssentials.IndexedDb idb loading errors #32).js.mapfiles viainlineSourcesso consumers can debug in browser devtools without needing.tsfilesminimatchto 10.2.5 to resolve Dependabot ReDoS vulnerabilitiesBlazorObservable_Delay_Throttletest on CI (mark Inconclusive, disable parallelization)Test plan
idb-loader.jscompiled output has.jsextension on importsourcesContentnpm auditshows 0 vulnerabilitiesCloses #32
🤖 Generated with Claude Code