Skip to content

Commit a73561d

Browse files
test: check
1 parent 639ac56 commit a73561d

File tree

3 files changed

+157
-697
lines changed

3 files changed

+157
-697
lines changed

src/utils.js

+4
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,8 @@ function normalizeSourceMap(map) {
165165
newMap = JSON.parse(newMap);
166166
}
167167

168+
console.log(newMap);
169+
168170
// Source maps should use forward slash because it is URLs (https://github.com/mozilla/source-map/issues/91)
169171
// We should normalize path because previous loaders like `sass-loader` using backslash when generate source map
170172

@@ -180,6 +182,8 @@ function normalizeSourceMap(map) {
180182
newMap.sources = newMap.sources.map((source) => normalizePath(source));
181183
}
182184

185+
console.log(newMap);
186+
183187
return newMap;
184188
}
185189

0 commit comments

Comments
 (0)