@lwc/template-compiler 3.1.3 → 3.3.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.
- package/dist/index.cjs.js +3 -3
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/package.json +4 -4
package/dist/index.cjs.js
CHANGED
|
@@ -181,9 +181,9 @@ function normalizeConfig(config) {
|
|
|
181
181
|
}
|
|
182
182
|
}
|
|
183
183
|
const apiVersion = shared.getAPIVersionFromNumber(config.apiVersion);
|
|
184
|
-
return Object.assign(Object.assign(Object.assign({ preserveHtmlComments: false, experimentalComputedMemberExpression: false,
|
|
184
|
+
return Object.assign(Object.assign(Object.assign(Object.assign({ preserveHtmlComments: false, experimentalComputedMemberExpression: false,
|
|
185
185
|
// TODO [#3370]: remove experimental template expression flag
|
|
186
|
-
experimentalComplexExpressions: false, experimentalDynamicDirective: false, enableDynamicComponents: false, enableStaticContentOptimization: true, enableLwcSpread: true
|
|
186
|
+
experimentalComplexExpressions: false, experimentalDynamicDirective: false, enableDynamicComponents: false, enableStaticContentOptimization: true, enableLwcSpread: true }, config), { apiVersion }), { customRendererConfig }), { instrumentation });
|
|
187
187
|
}
|
|
188
188
|
|
|
189
189
|
function isIdentifier(node) {
|
|
@@ -5365,5 +5365,5 @@ function compile(source, config) {
|
|
|
5365
5365
|
exports.compile = compile;
|
|
5366
5366
|
exports.default = compile;
|
|
5367
5367
|
exports.parse = parse;
|
|
5368
|
-
/** version: 3.
|
|
5368
|
+
/** version: 3.3.0 */
|
|
5369
5369
|
//# sourceMappingURL=index.cjs.js.map
|