Преглед изворни кода

Merge pull request #19981 from donmccurdy/bug-restore-sourcemaps

Preserve sourcemaps in Rollup transforms.
Mr.doob пре 5 година
родитељ
комит
9fc532fe61
1 измењених фајлова са 3 додато и 3 уклоњено
  1. 3 3
      utils/build/rollup.config.js

+ 3 - 3
utils/build/rollup.config.js

@@ -160,7 +160,7 @@ function glconstants() {
 
 			return {
 				code: code,
-				map: { mappings: '' }
+				map: null
 			};
 
 		}
@@ -192,7 +192,7 @@ function glsl() {
 
 			return {
 				code: code,
-				map: { mappings: '' }
+				map: null
 			};
 
 		}
@@ -228,7 +228,7 @@ function bubleCleanup() {
 
 			return {
 				code: code,
-				map: { mappings: '' }
+				map: null
 			};
 
 		}