Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
fix(test-utils): fix member ordering lint error
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
  • Loading branch information
chargome and claude committed Mar 6, 2026
commit 6a0f2b0294c2fcb9ca09a12706aab089cd9260fe
2 changes: 1 addition & 1 deletion dev-packages/test-utils/src/sourcemap-upload-utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ export interface ArtifactBundleData {
}

export interface ParsedSourcemap {
[key: string]: unknown;
version?: number;
sources?: string[];
mappings?: string;
[key: string]: unknown;
}

export interface SourcemapEntry {
Expand Down
Loading