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 2afed08 commit a827a3dCopy full SHA for a827a3d
packages/webpack5/src/loaders/nativescript-hot-loader/hmr.runtime.ts
@@ -59,14 +59,14 @@ if (module.hot) {
59
},
60
};
61
62
- const checkAndApply = async () => {
+ const checkAndApply = async function () {
63
hash = __webpack_require__.h();
64
const modules = await module.hot.check().catch((error) => {
65
return setStatus(
66
hash,
67
'failure',
68
'Failed to check.',
69
- error.message || error.stack
+ error.message || error.stack,
70
);
71
});
72
@@ -82,7 +82,7 @@ if (module.hot) {
82
83
84
'Failed to apply.',
85
86
87
88
0 commit comments