File tree Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Expand file tree Collapse file tree 3 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 1+ ## 4.3.2
2+ - Fix Dart2JS adding extraneous sourcemaps to its archive when both wasm and js are enabled.
3+
14## 4.3.1
25- Fix Dart2JS sourcemaps not being written when both wasm and js are enabled.
36
Original file line number Diff line number Diff line change @@ -131,7 +131,11 @@ $librariesString
131131 final archive = Archive ();
132132 await for (final jsFile in fileGlob.list (root: rootDir)) {
133133 if (jsFile.path.endsWith (entrypointExtension) ||
134- jsFile.path.endsWith (jsEntrypointSourceMapExtension)) {
134+ jsFile.path.endsWith (
135+ onlyCompiler
136+ ? jsEntrypointSourceMapExtension
137+ : dart2jsEntrypointSourceMapExtension,
138+ )) {
135139 // These are explicitly output, and are not part of the archive.
136140 continue ;
137141 }
Original file line number Diff line number Diff line change 11name : build_web_compilers
2- version : 4.3.1
2+ version : 4.3.2
33description : Builder implementations wrapping the dart2js and DDC compilers.
44repository : https://github.com/dart-lang/build/tree/master/build_web_compilers
55resolution : workspace
You can’t perform that action at this time.
0 commit comments