We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60f8c74 commit 07f4038Copy full SHA for 07f4038
lib/build/browserify.js
@@ -51,7 +51,7 @@ function create(opt) {
51
getInstance(file.path)
52
.bundle(this, file.relative)
53
.catch(function onError(errors) {
54
- messages.push.apply(errors);
+ messages.push.apply(messages, errors);
55
})
56
.finally(done);
57
}
@@ -99,7 +99,7 @@ function create(opt) {
99
*/
100
function getInstance(fileOrFiles) {
101
var files = [].concat(fileOrFiles);
102
- var key = JSON.stringify(files.sort());
+ var key = JSON.stringify(files.sort());
103
if (key in instances) {
104
return instances[key];
105
} else {
0 commit comments