Skip to content
This repository has been archived by the owner on Oct 9, 2020. It is now read-only.

Commit

Permalink
fix interesting omission
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford committed Jun 11, 2016
1 parent 8b799fb commit a0cc130
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/trace.js
Original file line number Diff line number Diff line change
Expand Up @@ -453,7 +453,9 @@ Trace.prototype.getLoadRecord = function(canonical, traceOpts, parentStack) {
return source;
})
// dont let a missing source map fail the entire build
.catch(function() {});
.catch(function() {
return source;
});
}
})

Expand Down

0 comments on commit a0cc130

Please sign in to comment.