@openmrs/esm-dynamic-loading 8.0.1-pre.3783 → 8.0.1-pre.3786
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/.turbo/turbo-build.log
CHANGED
|
@@ -45,9 +45,9 @@ export declare function preloadImport(jsPackage: string, importMap?: ImportMap):
|
|
|
45
45
|
/**
|
|
46
46
|
* @internal
|
|
47
47
|
*
|
|
48
|
-
* Used to load the current import map
|
|
48
|
+
* Used to load the current import map.
|
|
49
49
|
*
|
|
50
|
-
* @returns The current
|
|
50
|
+
* @returns The current import map.
|
|
51
51
|
*/
|
|
52
52
|
export declare function getCurrentImportMap(): Promise<ImportMap>;
|
|
53
53
|
//# sourceMappingURL=dynamic-loading.d.ts.map
|
package/dist/dynamic-loading.js
CHANGED
|
@@ -136,9 +136,9 @@ import { getCoreTranslation } from "@openmrs/esm-translations";
|
|
|
136
136
|
/**
|
|
137
137
|
* @internal
|
|
138
138
|
*
|
|
139
|
-
* Used to load the current import map
|
|
139
|
+
* Used to load the current import map.
|
|
140
140
|
*
|
|
141
|
-
* @returns The current
|
|
141
|
+
* @returns The current import map.
|
|
142
142
|
*/ export async function getCurrentImportMap() {
|
|
143
143
|
return window.importMapOverrides.getCurrentPageMap();
|
|
144
144
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@openmrs/esm-dynamic-loading",
|
|
3
|
-
"version": "8.0.1-pre.
|
|
3
|
+
"version": "8.0.1-pre.3786",
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
5
|
"description": "Utilities for dynamically loading code in OpenMRS",
|
|
6
6
|
"type": "module",
|
|
@@ -56,8 +56,8 @@
|
|
|
56
56
|
"@openmrs/esm-translations": "6.x"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
|
-
"@openmrs/esm-globals": "8.0.1-pre.
|
|
60
|
-
"@openmrs/esm-translations": "8.0.1-pre.
|
|
59
|
+
"@openmrs/esm-globals": "8.0.1-pre.3786",
|
|
60
|
+
"@openmrs/esm-translations": "8.0.1-pre.3786",
|
|
61
61
|
"@swc/cli": "^0.7.7",
|
|
62
62
|
"@swc/core": "^1.11.29",
|
|
63
63
|
"concurrently": "^9.1.2",
|
package/src/dynamic-loading.ts
CHANGED
|
@@ -173,9 +173,9 @@ export async function preloadImport(jsPackage: string, importMap?: ImportMap) {
|
|
|
173
173
|
/**
|
|
174
174
|
* @internal
|
|
175
175
|
*
|
|
176
|
-
* Used to load the current import map
|
|
176
|
+
* Used to load the current import map.
|
|
177
177
|
*
|
|
178
|
-
* @returns The current
|
|
178
|
+
* @returns The current import map.
|
|
179
179
|
*/
|
|
180
180
|
export async function getCurrentImportMap() {
|
|
181
181
|
return window.importMapOverrides.getCurrentPageMap();
|