luhc228
luhc228
基于 React Hooks 轻量的状态管理(@ice/hook-store) - #395 - https://github.com/ice-lab/hooks-store/pull/2
页面组件除了 `export default XXXComponent;`,还有 `export getInitialData` 和 `export getPageConfig` 时,HMR 会失效,直接重新加载了。 对于 页面组件只包含 `export default XXXComponent;`,HMR 是正常的。
https://github.com/ice-lab/ice-next/issues/380
### Describe the bug 源码中这样引入模块: ```ts import enUS from 'antd/locale/en_US'; console.log(enUS); ``` 启动后报错: 依赖预打包 cjs 模块(`antd/locale/en_US`)时候,预打包产物是会变成: 缺少了 `export default` 的导出。 ### Expected behavior 正常打包 ### Actual behavior _No response_ ###...
### What problem does this feature solve? Webpack supports [`__webpack_layer__`](https://github.com/webpack/webpack/blob/277460b33bcc49c51acbbcd688672aa4ec685732/lib/APIPlugin.js#L243) and it will be replaced with the value of `entry.layer`. But now Rspack doesn't support it. ### What does the...