Skip to content

Commit

Permalink
template literal fix (#227)
Browse files Browse the repository at this point in the history
IE doesn't support template literal.
  • Loading branch information
tonkotsuboy authored and devongovett committed Dec 12, 2017
1 parent 0f554dc commit b7b2991
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 @@ -40,7 +40,7 @@ if (!module.bundle.parent) {
}

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 b7b2991

Please sign in to comment.