@lwrjs/module-bundler 0.12.2 → 0.12.3
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.
|
@@ -33,6 +33,7 @@ var import_features = __toModule(require("@lwc/features"));
|
|
|
33
33
|
var lwcFeatureFlags = "default" in import_features.default ? import_features.default.default : import_features.default;
|
|
34
34
|
var lwcFeatureFlagDefinitions = Object.fromEntries(Object.keys(lwcFeatureFlags).map((feature) => [`lwcRuntimeFlags.${feature}`, "false"]));
|
|
35
35
|
delete lwcFeatureFlagDefinitions["lwcRuntimeFlags.ENABLE_MIXED_SHADOW_MODE"];
|
|
36
|
+
delete lwcFeatureFlagDefinitions["lwcRuntimeFlags.DISABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE"];
|
|
36
37
|
var esbuild = import_esbuild.default;
|
|
37
38
|
if (!import_esbuild.default) {
|
|
38
39
|
try {
|
|
@@ -7,6 +7,8 @@ const lwcFeatureFlags = 'default' in features ? features.default : features;
|
|
|
7
7
|
const lwcFeatureFlagDefinitions = Object.fromEntries(Object.keys(lwcFeatureFlags).map((feature) => [`lwcRuntimeFlags.${feature}`, 'false']));
|
|
8
8
|
// We cannot set mixed mode to false across the app; it varies by route.
|
|
9
9
|
delete lwcFeatureFlagDefinitions['lwcRuntimeFlags.ENABLE_MIXED_SHADOW_MODE'];
|
|
10
|
+
// We need to toggle this in production to test native vs synthetic lifecycle
|
|
11
|
+
delete lwcFeatureFlagDefinitions['lwcRuntimeFlags.DISABLE_NATIVE_CUSTOM_ELEMENT_LIFECYCLE'];
|
|
10
12
|
// https://github.com/evanw/esbuild/issues/706
|
|
11
13
|
// Fixed in 0.11.0 but upgrading past 0.9.7 has caused breaking changes for consumers...
|
|
12
14
|
// https://github.com/salesforce-experience-platform-emu/lwr/issues/1014
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.12.
|
|
7
|
+
"version": "0.12.3",
|
|
8
8
|
"homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -47,14 +47,14 @@
|
|
|
47
47
|
"build/**/*.d.ts"
|
|
48
48
|
],
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@lwrjs/diagnostics": "0.12.
|
|
51
|
-
"@lwrjs/instrumentation": "0.12.
|
|
52
|
-
"@lwrjs/shared-utils": "0.12.
|
|
50
|
+
"@lwrjs/diagnostics": "0.12.3",
|
|
51
|
+
"@lwrjs/instrumentation": "0.12.3",
|
|
52
|
+
"@lwrjs/shared-utils": "0.12.3",
|
|
53
53
|
"@rollup/plugin-replace": "^2.4.2",
|
|
54
54
|
"rollup": "^2.78.0"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@lwrjs/types": "0.12.
|
|
57
|
+
"@lwrjs/types": "0.12.3",
|
|
58
58
|
"jest": "^26.6.3",
|
|
59
59
|
"ts-jest": "^26.5.6"
|
|
60
60
|
},
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"volta": {
|
|
71
71
|
"extends": "../../../package.json"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "10990ea615710020653ca8012f16610071927d89"
|
|
74
74
|
}
|