openmrs 4.0.3-pre.364 → 4.0.3-pre.367
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
|
@@ -1 +1 @@
|
|
|
1
|
-
[36mopenmrs:build[0m: cache hit, replaying output [
|
|
1
|
+
[36mopenmrs:build[0m: cache hit, replaying output [2mfb8e8670fbfb71ea[0m
|
package/dist/commands/develop.js
CHANGED
|
@@ -29,8 +29,9 @@ function runDevelop(args) {
|
|
|
29
29
|
</script>
|
|
30
30
|
`)
|
|
31
31
|
.replace(/href="\/openmrs\/spa/g, `href="${spaPath}`)
|
|
32
|
-
.replace(/src="\/openmrs\/spa/g, `src="${spaPath}`)
|
|
33
|
-
|
|
32
|
+
.replace(/src="\/openmrs\/spa/g, `src="${spaPath}`)
|
|
33
|
+
.replace(/https:\/\/dev3.openmrs.org\/openmrs\/spa\/importmap\.json/g, `http://${host}:${port}${spaPath}/importmap.json`);
|
|
34
|
+
const pageUrl = `http://${host}:${port}${spaPath}`;
|
|
34
35
|
// Set up routes. Note that different middlewares have different rules
|
|
35
36
|
// about route precedence.
|
|
36
37
|
//
|
|
@@ -43,14 +44,11 @@ function runDevelop(args) {
|
|
|
43
44
|
// extension.
|
|
44
45
|
const indexHtmlPathMatcher = new RegExp(`^${spaPath}/(?!.*\\.js$)(?!.*\\.woff2?$)(?!.*\\.json$)(?!.*\\....$).*$`);
|
|
45
46
|
// Route for custom `importmap.json` goes above static assets
|
|
46
|
-
|
|
47
|
-
|
|
47
|
+
if (importmap.type === "inline") {
|
|
48
|
+
app.get(`${spaPath}/importmap.json`, (_, res) => {
|
|
48
49
|
res.contentType("application/json").send(importmap.value);
|
|
49
|
-
}
|
|
50
|
-
|
|
51
|
-
res.redirect(importmap.value);
|
|
52
|
-
}
|
|
53
|
-
});
|
|
50
|
+
});
|
|
51
|
+
}
|
|
54
52
|
// Route for custom `index.html` goes above static assets
|
|
55
53
|
app.get(indexHtmlPathMatcher, (_, res) => res.contentType("text/html").send(indexContent));
|
|
56
54
|
// Return static assets for any request for which we have one, except importmap.json and index.html
|
package/dist/utils/importmap.js
CHANGED
|
@@ -30,7 +30,7 @@ function readImportmap(path, backend, spaPath) {
|
|
|
30
30
|
else if (path === "importmap.json") {
|
|
31
31
|
if (backend && spaPath) {
|
|
32
32
|
try {
|
|
33
|
-
return yield fetchRemoteImportmap(`${backend}
|
|
33
|
+
return yield fetchRemoteImportmap(`${backend}${spaPath}importmap.json`);
|
|
34
34
|
}
|
|
35
35
|
catch (_a) { }
|
|
36
36
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openmrs",
|
|
3
|
-
"version": "4.0.3-pre.
|
|
3
|
+
"version": "4.0.3-pre.367",
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": "./dist/cli.js",
|
|
@@ -30,8 +30,8 @@
|
|
|
30
30
|
],
|
|
31
31
|
"homepage": "https://github.com/openmrs/openmrs-esm-core#readme",
|
|
32
32
|
"dependencies": {
|
|
33
|
-
"@openmrs/esm-app-shell": "4.0.3-pre.
|
|
34
|
-
"@openmrs/webpack-config": "4.0.3-pre.
|
|
33
|
+
"@openmrs/esm-app-shell": "4.0.3-pre.367",
|
|
34
|
+
"@openmrs/webpack-config": "4.0.3-pre.367",
|
|
35
35
|
"autoprefixer": "^10.4.2",
|
|
36
36
|
"axios": "^0.21.1",
|
|
37
37
|
"browserslist-config-openmrs": "^1.0.1",
|
|
@@ -65,5 +65,5 @@
|
|
|
65
65
|
"@types/systemjs": "^6.1.0",
|
|
66
66
|
"@types/tar": "^4.0.3"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "221f83fbf13c71ba941d4db5526369ea5e1e10ad"
|
|
69
69
|
}
|
package/src/commands/develop.ts
CHANGED
|
@@ -50,9 +50,13 @@ export function runDevelop(args: DevelopArgs) {
|
|
|
50
50
|
`
|
|
51
51
|
)
|
|
52
52
|
.replace(/href="\/openmrs\/spa/g, `href="${spaPath}`)
|
|
53
|
-
.replace(/src="\/openmrs\/spa/g, `src="${spaPath}`)
|
|
53
|
+
.replace(/src="\/openmrs\/spa/g, `src="${spaPath}`)
|
|
54
|
+
.replace(
|
|
55
|
+
/https:\/\/dev3.openmrs.org\/openmrs\/spa\/importmap\.json/g,
|
|
56
|
+
`http://${host}:${port}${spaPath}/importmap.json`
|
|
57
|
+
);
|
|
54
58
|
|
|
55
|
-
const pageUrl = `http://${host}:${port}${spaPath}
|
|
59
|
+
const pageUrl = `http://${host}:${port}${spaPath}`;
|
|
56
60
|
|
|
57
61
|
// Set up routes. Note that different middlewares have different rules
|
|
58
62
|
// about route precedence.
|
|
@@ -70,13 +74,11 @@ export function runDevelop(args: DevelopArgs) {
|
|
|
70
74
|
);
|
|
71
75
|
|
|
72
76
|
// Route for custom `importmap.json` goes above static assets
|
|
73
|
-
|
|
74
|
-
|
|
77
|
+
if (importmap.type === "inline") {
|
|
78
|
+
app.get(`${spaPath}/importmap.json`, (_, res) => {
|
|
75
79
|
res.contentType("application/json").send(importmap.value);
|
|
76
|
-
}
|
|
77
|
-
|
|
78
|
-
}
|
|
79
|
-
});
|
|
80
|
+
});
|
|
81
|
+
}
|
|
80
82
|
|
|
81
83
|
// Route for custom `index.html` goes above static assets
|
|
82
84
|
app.get(indexHtmlPathMatcher, (_, res) =>
|
package/src/utils/importmap.ts
CHANGED
|
@@ -15,9 +15,7 @@ async function readImportmap(path: string, backend?: string, spaPath?: string) {
|
|
|
15
15
|
} else if (path === "importmap.json") {
|
|
16
16
|
if (backend && spaPath) {
|
|
17
17
|
try {
|
|
18
|
-
return await fetchRemoteImportmap(
|
|
19
|
-
`${backend}/${spaPath}/importmap.json`
|
|
20
|
-
);
|
|
18
|
+
return await fetchRemoteImportmap(`${backend}${spaPath}importmap.json`);
|
|
21
19
|
} catch {}
|
|
22
20
|
}
|
|
23
21
|
|