@lynx-js/template-webpack-plugin-canary 0.6.11-canary-20250515-a56dadf9 → 0.6.11-canary-20250515-c38c7370
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 +3 -1
- package/lib/LynxTemplatePlugin.d.ts +1 -1
- package/lib/css/encode.js +6 -0
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @lynx-js/template-webpack-plugin
|
|
2
2
|
|
|
3
|
-
## 0.6.11-canary-
|
|
3
|
+
## 0.6.11-canary-20250515093533-c38c737096697781a154219d6b1e3b4ffbf6512f
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
@@ -10,6 +10,8 @@
|
|
|
10
10
|
|
|
11
11
|
See [lynx-family/lynx-stack#763](https://github.com/lynx-family/lynx-stack/issues/763) for details.
|
|
12
12
|
|
|
13
|
+
- Avoid CSS encode crash on Web platform. ([#814](https://github.com/lynx-family/lynx-stack/pull/814))
|
|
14
|
+
|
|
13
15
|
## 0.6.10
|
|
14
16
|
|
|
15
17
|
### Patch Changes
|
|
@@ -2,7 +2,7 @@ import { AsyncSeriesBailHook, AsyncSeriesWaterfallHook, SyncWaterfallHook } from
|
|
|
2
2
|
import type { Asset, Compilation, Compiler } from 'webpack';
|
|
3
3
|
import type * as CSS from '@lynx-js/css-serializer';
|
|
4
4
|
import { cssChunksToMap } from './css/cssChunksToMap.js';
|
|
5
|
-
interface EncodeOptions {
|
|
5
|
+
export interface EncodeOptions {
|
|
6
6
|
manifest: Record<string, string | undefined>;
|
|
7
7
|
compilerOptions: Record<string, string | boolean>;
|
|
8
8
|
lepusCode: {
|
package/lib/css/encode.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lynx-js/template-webpack-plugin-canary",
|
|
3
|
-
"version": "0.6.11-canary-20250515-
|
|
3
|
+
"version": "0.6.11-canary-20250515-c38c7370",
|
|
4
4
|
"description": "Simplifies creation of Lynx template files to serve your webpack bundles",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"webpack",
|
|
@@ -44,8 +44,8 @@
|
|
|
44
44
|
"@types/css-tree": "^2.3.10",
|
|
45
45
|
"@types/object.groupby": "^1.0.4",
|
|
46
46
|
"webpack": "^5.99.8",
|
|
47
|
-
"@lynx-js/
|
|
48
|
-
"@lynx-js/
|
|
47
|
+
"@lynx-js/test-tools": "0.0.0",
|
|
48
|
+
"@lynx-js/vitest-setup": "0.0.0"
|
|
49
49
|
},
|
|
50
50
|
"engines": {
|
|
51
51
|
"node": ">=18"
|