File tree 1 file changed +1
-3
lines changed
packages/angular_devkit/build_angular/src/utils 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,6 @@ import {
32
32
} from 'webpack-sources' ;
33
33
import { allowMangle , allowMinify , shouldBeautify } from './environment-options' ;
34
34
import { I18nOptions } from './i18n-options' ;
35
- import { isWebpackFiveOrHigher } from './webpack-version' ;
36
35
37
36
type LocalizeUtilities = typeof import ( '@angular/localize/src/tools/src/source_file_utils' ) ;
38
37
@@ -220,8 +219,7 @@ async function mergeSourceMaps(
220
219
fast = false ,
221
220
) : Promise < RawSourceMap > {
222
221
// Webpack 5 terser sourcemaps currently fail merging with the high-quality method
223
- // TODO_WEBPACK_5: Investigate high-quality sourcemap merge failures
224
- if ( fast || isWebpackFiveOrHigher ( ) ) {
222
+ if ( fast ) {
225
223
return mergeSourceMapsFast ( inputSourceMap , resultSourceMap ) ;
226
224
}
227
225
You can’t perform that action at this time.
0 commit comments