文件名称:webpack-hmr-repro
文件大小:66KB
文件格式:ZIP
更新时间:2024-05-26 06:04:27
JavaScript
这是webpack HMR的错误报告。 (Repro适用于4.41.1但也适用于5.0.0-beta.10 ) 概括 模块之间有两个级别的通配符重导出( export * from '...' ),中间模块有额外的导出,导致最终模块始终在第一个HMR更新时失效,即使它从未更改过也是如此。 使用以下依赖关系图: // deps/a.js export * from './b' // deps/b.js export * from './c' export function b ( ) { } // <-- this extra export is needed to reproduce // deps/c.js export function c ( ) { } 在index.js : import { c } from './deps/a' // other parts of th
【文件预览】:
webpack-hmr-repro-master
----package.json(178B)
----index.html(33B)
----src()
--------index.js(156B)
--------deps()
--------hot.js(60B)
----.gitignore(23B)
----README.md(1KB)
----yarn.lock(158KB)