UNPKG

241 BJavaScriptView Raw
1module.exports.reload = function ({ type, path }) {
2 return `
3 if (module.hot) {
4 module.hot.accept();
5 module.hot.dispose(() => {
6 global.hmrRefresh({ type: '${type}', path: '${path}' });
7 })
8 }
9`};