@lwc/engine-core 8.15.0 → 8.15.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.
- package/dist/index.cjs.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +4 -4
package/dist/index.cjs.js
CHANGED
|
@@ -2825,7 +2825,7 @@ 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 (process.env.SKIP_LWC_VERSION_MISMATCH_CHECK === 'true') {
|
|
2828
|
+
if (typeof process === 'object' && process.env.SKIP_LWC_VERSION_MISMATCH_CHECK === 'true') {
|
|
2829
2829
|
warned = true; // skip printing out version mismatch errors when env var is set
|
|
2830
2830
|
return;
|
|
2831
2831
|
}
|
|
@@ -8517,5 +8517,5 @@ exports.swapTemplate = swapTemplate;
|
|
|
8517
8517
|
exports.track = track;
|
|
8518
8518
|
exports.unwrap = unwrap;
|
|
8519
8519
|
exports.wire = wire;
|
|
8520
|
-
/** version: 8.15.
|
|
8520
|
+
/** version: 8.15.1 */
|
|
8521
8521
|
//# sourceMappingURL=index.cjs.js.map
|
package/dist/index.js
CHANGED
|
@@ -2822,7 +2822,7 @@ 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 (process.env.SKIP_LWC_VERSION_MISMATCH_CHECK === 'true') {
|
|
2825
|
+
if (typeof process === 'object' && process.env.SKIP_LWC_VERSION_MISMATCH_CHECK === 'true') {
|
|
2826
2826
|
warned = true; // skip printing out version mismatch errors when env var is set
|
|
2827
2827
|
return;
|
|
2828
2828
|
}
|
|
@@ -8463,5 +8463,5 @@ function readonly(obj) {
|
|
|
8463
8463
|
}
|
|
8464
8464
|
|
|
8465
8465
|
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 };
|
|
8466
|
-
/** version: 8.15.
|
|
8466
|
+
/** version: 8.15.1 */
|
|
8467
8467
|
//# 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.15.
|
|
7
|
+
"version": "8.15.1",
|
|
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.15.
|
|
50
|
-
"@lwc/shared": "8.15.
|
|
51
|
-
"@lwc/signals": "8.15.
|
|
49
|
+
"@lwc/features": "8.15.1",
|
|
50
|
+
"@lwc/shared": "8.15.1",
|
|
51
|
+
"@lwc/signals": "8.15.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
54
|
"observable-membrane": "2.0.0"
|