@lwrjs/client-modules 0.6.0-alpha.15 → 0.6.0-alpha.16
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/build/bundle/prod/lwr/init/init.js +1 -1
- package/build/bundle/prod/lwr/lockerDefine/lockerDefine.js +1 -1
- package/build/modules/lwr/init/init.js +0 -5
- package/build/modules/lwr/initSsr/initSsr.js +0 -5
- package/build/modules/lwr/lockerDefine/lockerDefine.js +257 -168
- package/build/modules/lwr/lockerSandbox/lockerSandbox.js +257 -168
- package/build/modules/lwr/metrics/metrics.js +4 -2
- package/package.json +4 -4
|
@@ -11,9 +11,11 @@ export const MODULE_DEFINE_COUNT = `${MODULE_DEFINE}.count`;
|
|
|
11
11
|
export const MODULE_FETCH = `${LOADER_PREFIX}module.fetch`;
|
|
12
12
|
export const MODULE_FETCH_COUNT = `${MODULE_FETCH}.count`;
|
|
13
13
|
export const MODULE_FETCH_DURATION = `${MODULE_FETCH}.duration`;
|
|
14
|
-
export const MODULE_ERROR = `${LOADER_PREFIX}module.error`;
|
|
14
|
+
export const MODULE_ERROR = `${LOADER_PREFIX}module.error`;
|
|
15
|
+
export const MODULE_AVAILABILITY = `${LOADER_PREFIX}module.availability`; // Loader: mappings
|
|
15
16
|
|
|
16
17
|
export const MAPPINGS_FETCH = `${LOADER_PREFIX}mappings.fetch`;
|
|
17
18
|
export const MAPPINGS_FETCH_COUNT = `${MAPPINGS_FETCH}.count`;
|
|
18
19
|
export const MAPPINGS_FETCH_DURATION = `${MAPPINGS_FETCH}.duration`;
|
|
19
|
-
export const MAPPINGS_ERROR = `${LOADER_PREFIX}mappings.error`;
|
|
20
|
+
export const MAPPINGS_ERROR = `${LOADER_PREFIX}mappings.error`;
|
|
21
|
+
export const MAPPINGS_AVAILABILITY = `${LOADER_PREFIX}mappings.availability`;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.6.0-alpha.
|
|
7
|
+
"version": "0.6.0-alpha.16",
|
|
8
8
|
"homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -31,8 +31,8 @@
|
|
|
31
31
|
"build:bundle": "rollup --config scripts/rollup.moduleBundle.config.cjs"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@locker/sandbox": "0.15.
|
|
35
|
-
"@lwrjs/shared-utils": "0.6.0-alpha.
|
|
34
|
+
"@locker/sandbox": "0.15.6",
|
|
35
|
+
"@lwrjs/shared-utils": "0.6.0-alpha.16"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
38
|
"rollup-plugin-terser": "^7.0.2"
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"engines": {
|
|
59
59
|
"node": ">=14.15.4 <17"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "2ccfba164126587f8c898da5994b6749ec23aa22"
|
|
62
62
|
}
|