Skip to content

Commit

Permalink
Fix ordering of source maps fields. (#22670)
Browse files Browse the repository at this point in the history
  • Loading branch information
brendandahl authored Oct 2, 2024
1 parent 4c34a0d commit 678bbd3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/wasm-sourcemap.py
Original file line number Diff line number Diff line change
Expand Up @@ -317,9 +317,9 @@ def build_sourcemap(entries, code_section_offset, prefixes, collect_sources, bas
last_line = line
last_column = column
return {'version': 3,
'names': [],
'sources': sources,
'sourcesContent': sources_content,
'names': [],
'mappings': ','.join(mappings)}


Expand Down

0 comments on commit 678bbd3

Please sign in to comment.