@lwc/template-compiler 8.20.1 → 8.20.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/README.md +0 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -64,7 +64,6 @@ const { code, warnings } = compile(`<template><h1>Hello World!</h1></template>`,
|
|
|
64
64
|
- `customRendererConfig` (CustomRendererConfig, optional) - specifies a configuration to use to match elements. Matched elements will get a custom renderer hook in the generated template.
|
|
65
65
|
- `instrumentation` (InstrumentationObject, optional) - instrumentation object to gather metrics and non-error logs for internal use. See the `@lwc/errors` package for details on the interface.
|
|
66
66
|
- `disableSyntheticShadowSupport` (type: `boolean`, default: `false`) - Set to true if synthetic shadow DOM support is not needed, which can result in smaller/faster output.
|
|
67
|
-
|
|
68
67
|
- Example 1: Config to match `<use>` elements under the `svg` namespace and have `href` attribute set.
|
|
69
68
|
|
|
70
69
|
```
|
package/dist/index.cjs.js
CHANGED
|
@@ -15691,5 +15691,5 @@ exports.generateScopeTokens = generateScopeTokens;
|
|
|
15691
15691
|
exports.kebabcaseToCamelcase = kebabcaseToCamelcase;
|
|
15692
15692
|
exports.parse = parse;
|
|
15693
15693
|
exports.toPropertyName = toPropertyName;
|
|
15694
|
-
/** version: 8.20.
|
|
15694
|
+
/** version: 8.20.2 */
|
|
15695
15695
|
//# sourceMappingURL=index.cjs.js.map
|
package/dist/index.js
CHANGED
|
@@ -15662,5 +15662,5 @@ function compile(source, filename, config) {
|
|
|
15662
15662
|
}
|
|
15663
15663
|
|
|
15664
15664
|
export { ElementDirectiveName, LWCDirectiveDomMode, LWCDirectiveRenderMode, LwcTagName, RootDirectiveName, TemplateDirectiveName, compile, compile as default, generateScopeTokens, kebabcaseToCamelcase, parse, toPropertyName };
|
|
15665
|
-
/** version: 8.20.
|
|
15665
|
+
/** version: 8.20.2 */
|
|
15666
15666
|
//# sourceMappingURL=index.js.map
|
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": "8.20.
|
|
7
|
+
"version": "8.20.2",
|
|
8
8
|
"description": "Template compiler package",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"lwc"
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@lwc/errors": "8.20.
|
|
50
|
-
"@lwc/shared": "8.20.
|
|
51
|
-
"acorn": "~8.
|
|
49
|
+
"@lwc/errors": "8.20.2",
|
|
50
|
+
"@lwc/shared": "8.20.2",
|
|
51
|
+
"acorn": "~8.15.0",
|
|
52
52
|
"astring": "~1.9.0",
|
|
53
53
|
"he": "~1.2.0"
|
|
54
54
|
},
|
|
@@ -57,6 +57,6 @@
|
|
|
57
57
|
"@types/estree": "^1.0.8",
|
|
58
58
|
"@types/he": "^1.2.3",
|
|
59
59
|
"estree-walker": "~3.0.3",
|
|
60
|
-
"parse5": "^
|
|
60
|
+
"parse5": "^8.0.0"
|
|
61
61
|
}
|
|
62
62
|
}
|