@lwrjs/app-service 0.15.0-alpha.2 → 0.15.0-alpha.20
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.
|
@@ -100,8 +100,13 @@ Promise.all(rootComponents.map(async (rootSpecifier) => {
|
|
|
100
100
|
return import(rootSpecifier).then(({default: Ctor}) => {
|
|
101
101
|
init([[element, Ctor]], serverData);
|
|
102
102
|
});
|
|
103
|
-
|
|
104
|
-
|
|
103
|
+
})).then(() => {
|
|
104
|
+
globalThis?.lwcRuntimeFlags?.ENABLE_WIRE_SYNC_EMIT &&
|
|
105
|
+
(globalThis.lwcRuntimeFlags = {
|
|
106
|
+
...globalThis.lwcRuntimeFlags,
|
|
107
|
+
ENABLE_WIRE_SYNC_EMIT: false,
|
|
108
|
+
});
|
|
109
|
+
});`,
|
|
105
110
|
isESM && options.hmrEnabled && `
|
|
106
111
|
// HMR related initialization
|
|
107
112
|
const viewMetadata = globalThis._lwrRuntimeDebug.viewMetadata;
|
|
@@ -108,8 +108,13 @@ Promise.all(rootComponents.map(async (rootSpecifier) => {
|
|
|
108
108
|
return import(rootSpecifier).then(({default: Ctor}) => {
|
|
109
109
|
init([[element, Ctor]], serverData);
|
|
110
110
|
});
|
|
111
|
-
|
|
112
|
-
|
|
111
|
+
})).then(() => {
|
|
112
|
+
globalThis?.lwcRuntimeFlags?.ENABLE_WIRE_SYNC_EMIT &&
|
|
113
|
+
(globalThis.lwcRuntimeFlags = {
|
|
114
|
+
...globalThis.lwcRuntimeFlags,
|
|
115
|
+
ENABLE_WIRE_SYNC_EMIT: false,
|
|
116
|
+
});
|
|
117
|
+
});`,
|
|
113
118
|
isESM &&
|
|
114
119
|
options.hmrEnabled &&
|
|
115
120
|
`
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.15.0-alpha.
|
|
7
|
+
"version": "0.15.0-alpha.20",
|
|
8
8
|
"homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -36,14 +36,14 @@
|
|
|
36
36
|
"build": "tsc -b"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@lwrjs/diagnostics": "0.15.0-alpha.
|
|
40
|
-
"@lwrjs/shared-utils": "0.15.0-alpha.
|
|
39
|
+
"@lwrjs/diagnostics": "0.15.0-alpha.20",
|
|
40
|
+
"@lwrjs/shared-utils": "0.15.0-alpha.20"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
|
-
"@lwrjs/types": "0.15.0-alpha.
|
|
43
|
+
"@lwrjs/types": "0.15.0-alpha.20"
|
|
44
44
|
},
|
|
45
45
|
"engines": {
|
|
46
46
|
"node": ">=18.0.0"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "112ed1a3472b68a90c6884422137006a5dcf032c"
|
|
49
49
|
}
|