@lwc/template-compiler 2.42.0 → 2.44.0

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.
Files changed (2) hide show
  1. package/README.md +1 -0
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -49,6 +49,7 @@ const { code, warnings } = compile(`<template><h1>Hello World!</h1></template>`,
49
49
  **Options:**
50
50
 
51
51
  - `experimentalComputedMemberExpression` (boolean, optional, `false` by default) - set to `true` to enable computed member expression in the template, eg: `{list[0].name}`.
52
+ - `experimentalComplexExpressions` (boolean, optional, `false` by default) - set to `true` to enable use of (a subset of) JavaScript expressions in place of template bindings.
52
53
  - `experimentalDynamicDirective` (boolean, optional, `false` by default) - set to `true` to allow the usage of `lwc:dynamic` directives in the template.
53
54
  - `enableDynamicComponents` (boolean, optional, `false` by default) - set to `true` to enable `lwc:is` directive in the template.
54
55
  - `preserveHtmlComments` (boolean, optional, `false` by default) - set to `true` to disable the default behavior of stripping HTML comments.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lwc/template-compiler",
3
- "version": "2.42.0",
3
+ "version": "2.44.0",
4
4
  "description": "Template compiler package",
5
5
  "homepage": "https://lwc.dev/",
6
6
  "repository": {
@@ -30,8 +30,8 @@
30
30
  "@types/source-map": "0.5.7"
31
31
  },
32
32
  "dependencies": {
33
- "@lwc/errors": "2.42.0",
34
- "@lwc/shared": "2.42.0",
33
+ "@lwc/errors": "2.44.0",
34
+ "@lwc/shared": "2.44.0",
35
35
  "acorn": "~8.8.2",
36
36
  "astring": "~1.8.3",
37
37
  "estree-walker": "~2.0.2",