@lwrjs/view-registry 0.9.0-alpha.20 → 0.9.0-alpha.22
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/cjs/utils.cjs +1 -1
- package/build/es/utils.js +1 -1
- package/package.json +6 -6
package/build/cjs/utils.cjs
CHANGED
|
@@ -250,7 +250,7 @@ async function createJsonModule(specifier, moduleRegistry, environment, params)
|
|
|
250
250
|
version,
|
|
251
251
|
ownHash,
|
|
252
252
|
links: {
|
|
253
|
-
self: moduleRegistry.resolveModuleUri(moduleIdentifier, environment, params, ownHash)
|
|
253
|
+
self: await moduleRegistry.resolveModuleUri(moduleIdentifier, environment, params, ownHash)
|
|
254
254
|
}
|
|
255
255
|
};
|
|
256
256
|
}
|
package/build/es/utils.js
CHANGED
|
@@ -235,7 +235,7 @@ export async function createJsonModule(specifier, moduleRegistry, environment, p
|
|
|
235
235
|
version,
|
|
236
236
|
ownHash,
|
|
237
237
|
links: {
|
|
238
|
-
self: moduleRegistry.resolveModuleUri(moduleIdentifier, environment, params, ownHash),
|
|
238
|
+
self: await moduleRegistry.resolveModuleUri(moduleIdentifier, environment, params, ownHash),
|
|
239
239
|
},
|
|
240
240
|
};
|
|
241
241
|
}
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.9.0-alpha.
|
|
7
|
+
"version": "0.9.0-alpha.22",
|
|
8
8
|
"homepage": "https://developer.salesforce.com/docs/platform/lwr/overview",
|
|
9
9
|
"repository": {
|
|
10
10
|
"type": "git",
|
|
@@ -30,15 +30,15 @@
|
|
|
30
30
|
"build/**/*.d.ts"
|
|
31
31
|
],
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@lwrjs/app-service": "0.9.0-alpha.
|
|
34
|
-
"@lwrjs/diagnostics": "0.9.0-alpha.
|
|
35
|
-
"@lwrjs/shared-utils": "0.9.0-alpha.
|
|
33
|
+
"@lwrjs/app-service": "0.9.0-alpha.22",
|
|
34
|
+
"@lwrjs/diagnostics": "0.9.0-alpha.22",
|
|
35
|
+
"@lwrjs/shared-utils": "0.9.0-alpha.22"
|
|
36
36
|
},
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"@lwrjs/types": "0.9.0-alpha.
|
|
38
|
+
"@lwrjs/types": "0.9.0-alpha.22"
|
|
39
39
|
},
|
|
40
40
|
"engines": {
|
|
41
41
|
"node": ">=14.15.4 <19"
|
|
42
42
|
},
|
|
43
|
-
"gitHead": "
|
|
43
|
+
"gitHead": "d7e7a6e84df652a09d78b9b0fadca271a438a01c"
|
|
44
44
|
}
|