@lwc/engine-core 2.30.0 → 2.30.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/engine-core.cjs.js +4 -4
- package/dist/engine-core.js +4 -2
- package/package.json +3 -3
package/dist/engine-core.cjs.js
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
/* proxy-compat-disable */
|
|
2
2
|
'use strict';
|
|
3
3
|
|
|
4
|
-
Object.defineProperty(exports, '__esModule', { value: true });
|
|
5
|
-
|
|
6
4
|
var features = require('@lwc/features');
|
|
7
5
|
var shared = require('@lwc/shared');
|
|
8
6
|
|
|
@@ -5837,7 +5835,9 @@ function installWireAdapters(vm) {
|
|
|
5837
5835
|
wire
|
|
5838
5836
|
}
|
|
5839
5837
|
} = vm;
|
|
5840
|
-
|
|
5838
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
5839
|
+
vm.debugInfo[WIRE_DEBUG_ENTRY] = shared.create(null);
|
|
5840
|
+
}
|
|
5841
5841
|
const wiredConnecting = context.wiredConnecting = [];
|
|
5842
5842
|
const wiredDisconnecting = context.wiredDisconnecting = [];
|
|
5843
5843
|
for (const fieldNameOrMethod in wire) {
|
|
@@ -6525,4 +6525,4 @@ exports.swapTemplate = swapTemplate;
|
|
|
6525
6525
|
exports.track = track;
|
|
6526
6526
|
exports.unwrap = unwrap;
|
|
6527
6527
|
exports.wire = wire;
|
|
6528
|
-
/* version: 2.30.
|
|
6528
|
+
/* version: 2.30.1 */
|
package/dist/engine-core.js
CHANGED
|
@@ -5834,7 +5834,9 @@ function installWireAdapters(vm) {
|
|
|
5834
5834
|
wire
|
|
5835
5835
|
}
|
|
5836
5836
|
} = vm;
|
|
5837
|
-
|
|
5837
|
+
if (process.env.NODE_ENV !== 'production') {
|
|
5838
|
+
vm.debugInfo[WIRE_DEBUG_ENTRY] = create(null);
|
|
5839
|
+
}
|
|
5838
5840
|
const wiredConnecting = context.wiredConnecting = [];
|
|
5839
5841
|
const wiredDisconnecting = context.wiredDisconnecting = [];
|
|
5840
5842
|
for (const fieldNameOrMethod in wire) {
|
|
@@ -6486,4 +6488,4 @@ function getComponentConstructor(elm) {
|
|
|
6486
6488
|
}
|
|
6487
6489
|
|
|
6488
6490
|
export { LightningElement, profilerControl as __unstable__ProfilerControl, api$1 as api, connectRootElement, createContextProvider, createVM, disconnectRootElement, freezeTemplate, getAssociatedVMIfPresent, getComponentConstructor, getComponentDef, getComponentHtmlPrototype, hydrateRoot, isComponentConstructor, parseFragment, parseSVGFragment, readonly, register, registerComponent, registerDecorators, registerTemplate, sanitizeAttribute, setHooks, swapComponent, swapStyle, swapTemplate, track, unwrap, wire };
|
|
6489
|
-
/* version: 2.30.
|
|
6491
|
+
/* version: 2.30.1 */
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lwc/engine-core",
|
|
3
|
-
"version": "2.30.
|
|
3
|
+
"version": "2.30.1",
|
|
4
4
|
"description": "Core LWC engine APIs.",
|
|
5
5
|
"homepage": "https://lwc.dev/",
|
|
6
6
|
"repository": {
|
|
@@ -24,8 +24,8 @@
|
|
|
24
24
|
"types/"
|
|
25
25
|
],
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@lwc/features": "2.30.
|
|
28
|
-
"@lwc/shared": "2.30.
|
|
27
|
+
"@lwc/features": "2.30.1",
|
|
28
|
+
"@lwc/shared": "2.30.1"
|
|
29
29
|
},
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"observable-membrane": "2.0.0"
|