@lynx-js/react-rsbuild-plugin 0.9.9 → 0.10.0

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,53 @@
1
1
  # @lynx-js/react-rsbuild-plugin
2
2
 
3
+ ## 0.10.0
4
+
5
+ ### Minor Changes
6
+
7
+ - **BREAKING CHANGE**: Remove the unused `jsx` option. ([#903](https://github.com/lynx-family/lynx-stack/pull/903))
8
+
9
+ ### Patch Changes
10
+
11
+ - Support `output.inlineScripts`, which controls whether to inline scripts into Lynx bundle (`.lynx.bundle`). ([#874](https://github.com/lynx-family/lynx-stack/pull/874))
12
+
13
+ Only background thread scripts can remain non-inlined, whereas the main thread script is always inlined.
14
+
15
+ example:
16
+
17
+ ```js
18
+ import { defineConfig } from '@lynx-js/rspeedy'
19
+
20
+ export default defineConfig({
21
+ output: {
22
+ inlineScripts: false,
23
+ },
24
+ })
25
+ ```
26
+
27
+ - Support `@lynx-js/react` v0.109.0. ([#840](https://github.com/lynx-family/lynx-stack/pull/840))
28
+
29
+ - Use `WebEncodePlugin` instead of `WebWebpackPlugin`. ([#904](https://github.com/lynx-family/lynx-stack/pull/904))
30
+
31
+ - Updated dependencies [[`7beb35e`](https://github.com/lynx-family/lynx-stack/commit/7beb35ebf72f9475c0a200c93c6b9bdaa7980e1b), [`b6e27da`](https://github.com/lynx-family/lynx-stack/commit/b6e27daf865b0627b1c3238228a4fdf65ad87ee3), [`5ddec12`](https://github.com/lynx-family/lynx-stack/commit/5ddec124ab26e61e415576d575a400e76c7bd8d2), [`77524bc`](https://github.com/lynx-family/lynx-stack/commit/77524bcf502675a182923823bf5c892846e0c729), [`fdab5dc`](https://github.com/lynx-family/lynx-stack/commit/fdab5dc9d624de0b39957695599cc8eebab90973), [`ff63b58`](https://github.com/lynx-family/lynx-stack/commit/ff63b58af137be5265458cb08db9af0aaa69c416), [`fdab5dc`](https://github.com/lynx-family/lynx-stack/commit/fdab5dc9d624de0b39957695599cc8eebab90973), [`2b83934`](https://github.com/lynx-family/lynx-stack/commit/2b83934f12c9ad9ed46ef76233d5bb12a1e6af23), [`3520031`](https://github.com/lynx-family/lynx-stack/commit/352003113596692c34d98644db401ece362bc936)]:
32
+ - @lynx-js/template-webpack-plugin@0.7.0
33
+ - @lynx-js/css-extract-webpack-plugin@0.5.4
34
+ - @lynx-js/react-refresh-webpack-plugin@0.3.3
35
+ - @lynx-js/react-webpack-plugin@0.6.14
36
+ - @lynx-js/react-alias-rsbuild-plugin@0.10.0
37
+
38
+ ## 0.9.10
39
+
40
+ ### Patch Changes
41
+
42
+ - Updated dependencies [[`e599635`](https://github.com/lynx-family/lynx-stack/commit/e599635a667c2d98271e0d54b7f6d49dadbfbdba), [`c38c737`](https://github.com/lynx-family/lynx-stack/commit/c38c737096697781a154219d6b1e3b4ffbf6512f), [`d16522e`](https://github.com/lynx-family/lynx-stack/commit/d16522eee0db3cd1a6ec20fb5832fd79f89a2264)]:
43
+ - @lynx-js/template-webpack-plugin@0.6.11
44
+ - @lynx-js/web-webpack-plugin@0.6.7
45
+ - @lynx-js/runtime-wrapper-webpack-plugin@0.1.0
46
+ - @lynx-js/react-alias-rsbuild-plugin@0.9.10
47
+ - @lynx-js/react-refresh-webpack-plugin@0.3.2
48
+ - @lynx-js/react-webpack-plugin@0.6.13
49
+ - @lynx-js/css-extract-webpack-plugin@0.5.3
50
+
3
51
  ## 0.9.9
4
52
 
5
53
  ### Patch Changes