Skip to content

Commit

Permalink
Fix hmr runtime error (#852)
Browse files Browse the repository at this point in the history
  • Loading branch information
mischnic authored and devongovett committed Feb 20, 2018
1 parent 376dc2c commit 842b9d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/builtins/hmr-runtime.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ if ((!parent || !parent.isParcelRequire) && typeof WebSocket !== 'undefined') {
}

if (data.type === 'error') {
console.error('[parcel] 🚨 ' + data.error.message + '\n' + 'data.error.stack');
console.error('[parcel] 🚨 ' + data.error.message + '\n' + data.error.stack);
}
};
}
Expand Down

0 comments on commit 842b9d8

Please sign in to comment.