Skip to content

Commit 9fc532f

Browse files
authored
Merge pull request #19981 from donmccurdy/bug-restore-sourcemaps
Preserve sourcemaps in Rollup transforms.
2 parents 84f610d + 1eedf1b commit 9fc532f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

utils/build/rollup.config.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ function glconstants() {
160160

161161
return {
162162
code: code,
163-
map: { mappings: '' }
163+
map: null
164164
};
165165

166166
}
@@ -192,7 +192,7 @@ function glsl() {
192192

193193
return {
194194
code: code,
195-
map: { mappings: '' }
195+
map: null
196196
};
197197

198198
}
@@ -228,7 +228,7 @@ function bubleCleanup() {
228228

229229
return {
230230
code: code,
231-
map: { mappings: '' }
231+
map: null
232232
};
233233

234234
}

0 commit comments

Comments
 (0)