We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c668676 commit 51d74caCopy full SHA for 51d74ca
1 file changed
grunt/config/browserify.js
@@ -83,7 +83,11 @@ var transformer = {
83
debug: false,
84
standalone: 'JSXTransformer',
85
transforms: [],
86
- plugins: [collapser],
+ // Source-map-generator uses amdefine, which looks at the type of __dereq__.
87
+ // If it's not a string, it assumes something else (array of strings), but
88
+ // collapser passes a number; this would throw.
89
+
90
+ // plugins: [collapser],
91
after: [es3ify.transform, derequire, simpleBannerify]
92
};
93
0 commit comments