@lwc/template-compiler 6.4.1 → 6.4.2
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/dist/codegen/static-element.d.ts +4 -2
- package/dist/index.cjs.js +46 -46
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +47 -47
- package/dist/index.js.map +1 -1
- package/dist/shared/types.d.ts +1 -1
- package/package.json +3 -3
package/dist/shared/types.d.ts
CHANGED
|
@@ -131,7 +131,7 @@ export interface Element extends AbstractBaseElement {
|
|
|
131
131
|
export interface StaticElement extends Element {
|
|
132
132
|
children: StaticChildNode[];
|
|
133
133
|
}
|
|
134
|
-
export type StaticChildNode = StaticElement | Text;
|
|
134
|
+
export type StaticChildNode = StaticElement | Text | Comment;
|
|
135
135
|
export interface ExternalComponent extends AbstractBaseElement {
|
|
136
136
|
type: 'ExternalComponent';
|
|
137
137
|
}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"You can safely modify dependencies, devDependencies, keywords, etc., but other props will be overwritten."
|
|
5
5
|
],
|
|
6
6
|
"name": "@lwc/template-compiler",
|
|
7
|
-
"version": "6.4.
|
|
7
|
+
"version": "6.4.2",
|
|
8
8
|
"description": "Template compiler package",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"lwc"
|
|
@@ -42,8 +42,8 @@
|
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
44
|
"dependencies": {
|
|
45
|
-
"@lwc/errors": "6.4.
|
|
46
|
-
"@lwc/shared": "6.4.
|
|
45
|
+
"@lwc/errors": "6.4.2",
|
|
46
|
+
"@lwc/shared": "6.4.2",
|
|
47
47
|
"acorn": "8.10.0",
|
|
48
48
|
"astring": "~1.8.6",
|
|
49
49
|
"estree-walker": "~2.0.2",
|