@lwc/template-compiler 3.3.0 → 3.3.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/index.cjs.js +13 -6
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +13 -6
- package/dist/index.js.map +1 -1
- package/dist/shared/estree.d.ts +1 -0
- package/package.json +3 -3
package/dist/shared/estree.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export declare function binaryExpression(operator: t.BinaryExpression['operator'
|
|
|
21
21
|
export declare function logicalExpression(operator: t.LogicalExpression['operator'], left: t.LogicalExpression['left'], right: t.LogicalExpression['right'], config?: Partial<t.LogicalExpression>): t.LogicalExpression;
|
|
22
22
|
export declare function assignmentExpression(operator: t.AssignmentExpression['operator'], left: t.AssignmentExpression['left'], right: t.AssignmentExpression['right'], config?: Partial<t.AssignmentExpression>): t.AssignmentExpression;
|
|
23
23
|
export declare function property(key: t.Property['key'], value: t.Property['value'], config?: Partial<t.Property>): t.Property;
|
|
24
|
+
export declare function spreadElement(argument: t.Expression): t.SpreadElement;
|
|
24
25
|
export declare function assignmentProperty(key: t.AssignmentProperty['key'], value: t.AssignmentProperty['value'], config?: Partial<t.AssignmentProperty>): t.AssignmentProperty;
|
|
25
26
|
export declare function objectExpression(properties: t.ObjectExpression['properties'], config?: Partial<t.ObjectExpression>): t.ObjectExpression;
|
|
26
27
|
export declare function objectPattern(properties: t.ObjectPattern['properties'], config?: Partial<t.ObjectPattern>): t.ObjectPattern;
|
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": "3.3.
|
|
7
|
+
"version": "3.3.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": "3.3.
|
|
46
|
-
"@lwc/shared": "3.3.
|
|
45
|
+
"@lwc/errors": "3.3.2",
|
|
46
|
+
"@lwc/shared": "3.3.2",
|
|
47
47
|
"acorn": "~8.10.0",
|
|
48
48
|
"astring": "~1.8.6",
|
|
49
49
|
"estree-walker": "~2.0.2",
|