openmrs 5.3.1 → 5.3.2-pre.1210
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
|
-
[32mopenmrs:build[0m: cache hit, replaying output [
|
|
1
|
+
[32mopenmrs:build[0m: cache hit, replaying output [2m243eb5f431127eb4[0m
|
package/dist/commands/build.js
CHANGED
|
@@ -86,7 +86,7 @@ function runBuild(args) {
|
|
|
86
86
|
return yield new Promise((resolve, reject) => {
|
|
87
87
|
compiler.run((err, stats) => {
|
|
88
88
|
if (err || (stats === null || stats === void 0 ? void 0 : stats.hasErrors())) {
|
|
89
|
-
reject(err !== null && err !== void 0 ? err : stats === null || stats === void 0 ? void 0 : stats.compilation.errors);
|
|
89
|
+
reject(err !== null && err !== void 0 ? err : new Error(stats === null || stats === void 0 ? void 0 : stats.compilation.errors.toString()));
|
|
90
90
|
}
|
|
91
91
|
else {
|
|
92
92
|
stats &&
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openmrs",
|
|
3
|
-
"version": "5.3.
|
|
3
|
+
"version": "5.3.2-pre.1210",
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": "./dist/cli.js",
|
|
@@ -29,8 +29,8 @@
|
|
|
29
29
|
],
|
|
30
30
|
"homepage": "https://github.com/openmrs/openmrs-esm-core#readme",
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@openmrs/esm-app-shell": "5.3.
|
|
33
|
-
"@openmrs/webpack-config": "5.3.
|
|
32
|
+
"@openmrs/esm-app-shell": "5.3.2-pre.1210",
|
|
33
|
+
"@openmrs/webpack-config": "5.3.2-pre.1210",
|
|
34
34
|
"@pnpm/npm-conf": "^2.1.0",
|
|
35
35
|
"@swc/core": "^1.3.58",
|
|
36
36
|
"autoprefixer": "^10.4.2",
|
|
@@ -67,5 +67,6 @@
|
|
|
67
67
|
"@types/react": "^18.0.9",
|
|
68
68
|
"@types/rimraf": "^2.0.2",
|
|
69
69
|
"@types/tar": "^4.0.3"
|
|
70
|
-
}
|
|
70
|
+
},
|
|
71
|
+
"stableVersion": "5.3.1"
|
|
71
72
|
}
|
package/src/commands/build.ts
CHANGED
|
@@ -156,7 +156,7 @@ export async function runBuild(args: BuildArgs) {
|
|
|
156
156
|
return await new Promise<void>((resolve, reject) => {
|
|
157
157
|
compiler.run((err, stats) => {
|
|
158
158
|
if (err || stats?.hasErrors()) {
|
|
159
|
-
reject(err ?? stats?.compilation.errors);
|
|
159
|
+
reject(err ?? new Error(stats?.compilation.errors.toString()));
|
|
160
160
|
} else {
|
|
161
161
|
stats &&
|
|
162
162
|
console.log(
|