@lwc/template-compiler 2.21.0 → 2.21.1

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.
@@ -28,7 +28,7 @@ export interface SourceLocation {
28
28
  }
29
29
  export interface ElementSourceLocation extends SourceLocation {
30
30
  startTag: SourceLocation;
31
- endTag?: SourceLocation;
31
+ endTag: SourceLocation;
32
32
  }
33
33
  export interface Literal<Value = string | boolean> {
34
34
  type: 'Literal';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lwc/template-compiler",
3
- "version": "2.21.0",
3
+ "version": "2.21.1",
4
4
  "description": "Template compiler package",
5
5
  "homepage": "https://lwc.dev/",
6
6
  "repository": {
@@ -26,8 +26,8 @@
26
26
  },
27
27
  "//": "Currently can't upgrade estree-walker to v3.0.0 because it dropped CommonJS support: https://git.io/JXguS",
28
28
  "dependencies": {
29
- "@lwc/errors": "2.21.0",
30
- "@lwc/shared": "2.21.0",
29
+ "@lwc/errors": "2.21.1",
30
+ "@lwc/shared": "2.21.1",
31
31
  "acorn": "~8.7.1",
32
32
  "astring": "~1.8.3",
33
33
  "estree-walker": "~2.0.2",