@lynx-js/web-core-server-canary 0.18.4-canary-20251120-e2c78043 → 0.18.4

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/web-core-server
2
2
 
3
- ## 0.18.4-canary-20251120164658-e2c780434772d9abd8f92c67ce87e3935f495429
3
+ ## 0.18.4
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - feat: builtinTagTransformMap add `'x-input-ng': 'x-input'` ([#1932](https://github.com/lynx-family/lynx-stack/pull/1932))
8
8
 
9
+ - chore: minor bundle output change ([#1946](https://github.com/lynx-family/lynx-stack/pull/1946))
10
+
11
+ the timing of loading wasm chunk has been changed
12
+
9
13
  ## 0.18.3
10
14
 
11
15
  ## 0.18.2
@@ -127,25 +131,25 @@
127
131
  lynxView.initI18nResources = [
128
132
  {
129
133
  options: {
130
- locale: "en",
131
- channel: "1",
132
- fallback_url: "",
134
+ locale: 'en',
135
+ channel: '1',
136
+ fallback_url: '',
133
137
  },
134
138
  resource: {
135
- hello: "hello",
136
- lynx: "lynx web platform1",
139
+ hello: 'hello',
140
+ lynx: 'lynx web platform1',
137
141
  },
138
142
  },
139
143
  ];
140
- lynxView.addEventListener("i18nResourceMissed", (e) => {
144
+ lynxView.addEventListener('i18nResourceMissed', (e) => {
141
145
  console.log(e);
142
146
  });
143
147
 
144
148
  // mts
145
149
  _I18nResourceTranslation({
146
- locale: "en",
147
- channel: "1",
148
- fallback_url: "",
150
+ locale: 'en',
151
+ channel: '1',
152
+ fallback_url: '',
149
153
  });
150
154
  ```
151
155