Skip to content

Commit b7b2991

Browse files
tonkotsuboydevongovett
authored andcommitted
template literal fix (#227)
IE doesn't support template literal.
1 parent 0f554dc commit b7b2991

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/builtins/hmr-runtime.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ if (!module.bundle.parent) {
4040
}
4141

4242
if (data.type === 'error') {
43-
console.error(`[parcel] 🚨 ${data.error.message}\n${data.error.stack}`);
43+
console.error('[parcel] 🚨 ' + data.error.message + '\n' + 'data.error.stack');
4444
}
4545
};
4646
}

0 commit comments

Comments
 (0)