@lynx-js/lynx-bundle-rslib-config-canary 0.1.0-canary-20251225-cd89bf9e → 0.1.0-canary-20251226-f0317a32
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,11 +1,15 @@
|
|
|
1
1
|
# @lynx-js/lynx-bundle-rslib-config
|
|
2
2
|
|
|
3
|
-
## 0.1.0-canary-
|
|
3
|
+
## 0.1.0-canary-20251226071107-f0317a32d26e90c1da0ee63f29e5fb711899f075
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
7
7
|
- Update external bundle minimum SDK version to 3.5. ([#2037](https://github.com/lynx-family/lynx-stack/pull/2037))
|
|
8
8
|
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Fix `globDynamicComponentEntry is not defined` error when minify is enabled in external bundle consumer. ([#2058](https://github.com/lynx-family/lynx-stack/pull/2058))
|
|
12
|
+
|
|
9
13
|
## 0.0.2
|
|
10
14
|
|
|
11
15
|
### Patch Changes
|
|
@@ -13,7 +13,9 @@ export class MainThreadRuntimeWrapperWebpackPlugin {
|
|
|
13
13
|
new BannerPlugin({
|
|
14
14
|
test: this.options.test ?? /\.js$/,
|
|
15
15
|
raw: true,
|
|
16
|
-
banner: `(function () {
|
|
16
|
+
banner: `(function () {
|
|
17
|
+
// TODO: remove this after \`useModuleWrapper\` supports MTS
|
|
18
|
+
var globDynamicComponentEntry = '__Card__';
|
|
17
19
|
const module = { exports: {} }
|
|
18
20
|
const exports = module.exports`,
|
|
19
21
|
}).apply(compiler);
|
package/package.json
CHANGED