@lynx-js/template-webpack-plugin-canary 0.7.1 → 0.7.2-canary-20250605-78582bfb
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 +11 -4
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# @lynx-js/template-webpack-plugin
|
|
2
2
|
|
|
3
|
+
## 0.7.2-canary-20250605114946-78582bfb1dd6237418fb608535d6b1555416f505
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [[`ccb4254`](https://github.com/lynx-family/lynx-stack/commit/ccb4254cf4008362e2536a473660c4e3453e5a64)]:
|
|
8
|
+
- @lynx-js/css-serializer@0.1.3-canary-20250605114946-78582bfb1dd6237418fb608535d6b1555416f505
|
|
9
|
+
|
|
3
10
|
## 0.7.1
|
|
4
11
|
|
|
5
12
|
### Patch Changes
|
|
@@ -25,7 +32,7 @@
|
|
|
25
32
|
example:
|
|
26
33
|
|
|
27
34
|
```js
|
|
28
|
-
import { defineConfig } from
|
|
35
|
+
import { defineConfig } from "@lynx-js/rspeedy";
|
|
29
36
|
|
|
30
37
|
export default defineConfig({
|
|
31
38
|
output: {
|
|
@@ -120,7 +127,7 @@
|
|
|
120
127
|
- Add `defaultOverflowVisible` option to `LynxTemplatePlugin`. ([#78](https://github.com/lynx-family/lynx-stack/pull/78))
|
|
121
128
|
|
|
122
129
|
```js
|
|
123
|
-
import { LynxTemplatePlugin } from
|
|
130
|
+
import { LynxTemplatePlugin } from "@lynx-js/template-webpack-plugin";
|
|
124
131
|
|
|
125
132
|
new LynxTemplatePlugin({
|
|
126
133
|
defaultOverflowVisible: false,
|
|
@@ -139,10 +146,10 @@
|
|
|
139
146
|
- 1abf8f0: Add `entryNames` parameter to `beforeEncode` hook.
|
|
140
147
|
|
|
141
148
|
```js
|
|
142
|
-
import { LynxTemplatePlugin } from
|
|
149
|
+
import { LynxTemplatePlugin } from "@lynx-js/template-webpack-plugin";
|
|
143
150
|
|
|
144
151
|
const hooks = LynxTemplatePlugin.getLynxTemplatePluginHooks(compilation);
|
|
145
|
-
hooks.beforeEncode.tap(
|
|
152
|
+
hooks.beforeEncode.tap("MyPlugin", ({ entryNames }) => {
|
|
146
153
|
console.log(entryNames);
|
|
147
154
|
});
|
|
148
155
|
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/template-webpack-plugin-canary",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.2-canary-20250605-78582bfb",
|
|
4
4
|
"description": "Simplifies creation of Lynx template files to serve your webpack bundles",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
"README.md"
|
|
33
33
|
],
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@lynx-js/css-serializer": "npm:@lynx-js/css-serializer-canary@0.1.
|
|
35
|
+
"@lynx-js/css-serializer": "npm:@lynx-js/css-serializer-canary@0.1.3-canary-20250605-78582bfb",
|
|
36
36
|
"@lynx-js/tasm": "0.0.5",
|
|
37
37
|
"@lynx-js/webpack-runtime-globals": "npm:@lynx-js/webpack-runtime-globals-canary@0.0.5",
|
|
38
38
|
"@rspack/lite-tapable": "1.0.1",
|