@lwc/engine-core 8.16.0 → 8.16.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 +5 -2
- package/dist/index.js +5 -2
- package/package.json +4 -4
package/dist/index.cjs.js
CHANGED
|
@@ -2825,7 +2825,10 @@ if (process.env.NODE_ENV === 'test-karma-lwc') {
|
|
|
2825
2825
|
function checkVersionMismatch(func, type) {
|
|
2826
2826
|
const versionMatcher = func.toString().match(shared.LWC_VERSION_COMMENT_REGEX);
|
|
2827
2827
|
if (!shared.isNull(versionMatcher) && !warned) {
|
|
2828
|
-
if (typeof process === 'object' &&
|
|
2828
|
+
if (typeof process === 'object' &&
|
|
2829
|
+
typeof process?.env === 'object' &&
|
|
2830
|
+
process.env &&
|
|
2831
|
+
process.env.SKIP_LWC_VERSION_MISMATCH_CHECK === 'true') {
|
|
2829
2832
|
warned = true; // skip printing out version mismatch errors when env var is set
|
|
2830
2833
|
return;
|
|
2831
2834
|
}
|
|
@@ -8522,5 +8525,5 @@ exports.swapTemplate = swapTemplate;
|
|
|
8522
8525
|
exports.track = track;
|
|
8523
8526
|
exports.unwrap = unwrap;
|
|
8524
8527
|
exports.wire = wire;
|
|
8525
|
-
/** version: 8.16.
|
|
8528
|
+
/** version: 8.16.2 */
|
|
8526
8529
|
//# sourceMappingURL=index.cjs.js.map
|
package/dist/index.js
CHANGED
|
@@ -2822,7 +2822,10 @@ if (process.env.NODE_ENV === 'test-karma-lwc') {
|
|
|
2822
2822
|
function checkVersionMismatch(func, type) {
|
|
2823
2823
|
const versionMatcher = func.toString().match(LWC_VERSION_COMMENT_REGEX);
|
|
2824
2824
|
if (!isNull(versionMatcher) && !warned) {
|
|
2825
|
-
if (typeof process === 'object' &&
|
|
2825
|
+
if (typeof process === 'object' &&
|
|
2826
|
+
typeof process?.env === 'object' &&
|
|
2827
|
+
process.env &&
|
|
2828
|
+
process.env.SKIP_LWC_VERSION_MISMATCH_CHECK === 'true') {
|
|
2826
2829
|
warned = true; // skip printing out version mismatch errors when env var is set
|
|
2827
2830
|
return;
|
|
2828
2831
|
}
|
|
@@ -8468,5 +8471,5 @@ function readonly(obj) {
|
|
|
8468
8471
|
}
|
|
8469
8472
|
|
|
8470
8473
|
export { BaseBridgeElement, LightningElement, profilerControl as __unstable__ProfilerControl, reportingControl as __unstable__ReportingControl, api$1 as api, computeShadowAndRenderMode, connectRootElement, createContextProviderWithRegister, createVM, disconnectRootElement, freezeTemplate, getAssociatedVMIfPresent, getComponentAPIVersion, getComponentConstructor, getComponentDef, getComponentHtmlPrototype, hydrateRoot, isComponentConstructor, parseFragment, parseSVGFragment, readonly, registerComponent, registerDecorators, registerTemplate, runFormAssociatedCallback, runFormDisabledCallback, runFormResetCallback, runFormStateRestoreCallback, sanitizeAttribute, shouldBeFormAssociated, swapComponent, swapStyle, swapTemplate, track, unwrap, wire };
|
|
8471
|
-
/** version: 8.16.
|
|
8474
|
+
/** version: 8.16.2 */
|
|
8472
8475
|
//# 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/engine-core",
|
|
7
|
-
"version": "8.16.
|
|
7
|
+
"version": "8.16.2",
|
|
8
8
|
"description": "Core LWC engine APIs.",
|
|
9
9
|
"keywords": [
|
|
10
10
|
"lwc"
|
|
@@ -46,9 +46,9 @@
|
|
|
46
46
|
}
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@lwc/features": "8.16.
|
|
50
|
-
"@lwc/shared": "8.16.
|
|
51
|
-
"@lwc/signals": "8.16.
|
|
49
|
+
"@lwc/features": "8.16.2",
|
|
50
|
+
"@lwc/shared": "8.16.2",
|
|
51
|
+
"@lwc/signals": "8.16.2"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"observable-membrane": "2.0.0"
|