@lynx-js/react-webpack-plugin 0.6.14 → 0.6.15

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @lynx-js/react-webpack-plugin
2
2
 
3
+ ## 0.6.15
4
+
5
+ ### Patch Changes
6
+
7
+ - Fix lazy bundle build failed on Rspeedy v0.9.8 (with `output.iife: true`). ([#972](https://github.com/lynx-family/lynx-stack/pull/972))
8
+
3
9
  ## 0.6.14
4
10
 
5
11
  ### Patch Changes
@@ -181,7 +181,7 @@ class ReactWebpackPlugin {
181
181
  compilation.updateAsset(encodeData.lepusCode.root.name, (old) => new ConcatSource(`\
182
182
  (function (globDynamicComponentEntry) {
183
183
  const module = { exports: {} }
184
- const exports = module.exports
184
+ const exports = module.exports;
185
185
  `, old, `
186
186
  ;return module.exports
187
187
  })`));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lynx-js/react-webpack-plugin",
3
- "version": "0.6.14",
3
+ "version": "0.6.15",
4
4
  "description": "A webpack plugin for ReactLynx",
5
5
  "keywords": [
6
6
  "webpack",
@@ -43,8 +43,8 @@
43
43
  "swc-loader": "^0.2.6",
44
44
  "webpack": "^5.99.9",
45
45
  "@lynx-js/css-extract-webpack-plugin": "0.5.4",
46
- "@lynx-js/react": "0.109.0",
47
- "@lynx-js/template-webpack-plugin": "0.7.0",
46
+ "@lynx-js/react": "0.109.1",
47
+ "@lynx-js/template-webpack-plugin": "0.7.1",
48
48
  "@lynx-js/test-tools": "0.0.0",
49
49
  "@lynx-js/vitest-setup": "0.0.0"
50
50
  },