openmrs 3.3.2-pre.9 → 3.4.0
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,2 +1,2 @@
|
|
|
1
|
-
[36mopenmrs:build: [0mcache hit, replaying output [
|
|
1
|
+
[36mopenmrs:build: [0mcache hit, replaying output [2m41916b6fc96a6102[0m
|
|
2
2
|
[36mopenmrs:build: [0m$ tsc
|
|
@@ -118,6 +118,7 @@ function extractFiles(sourceFile, targetDir) {
|
|
|
118
118
|
const sourceDir = (0, path_1.dirname)(entryModule);
|
|
119
119
|
Object.keys(files)
|
|
120
120
|
.filter((m) => m.startsWith(`${packageRoot}/${sourceDir}`))
|
|
121
|
+
.filter((m) => !m.endsWith(".map"))
|
|
121
122
|
.forEach((m) => {
|
|
122
123
|
const content = files[m];
|
|
123
124
|
const fileName = m.replace(`${packageRoot}/${sourceDir}/`, "");
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "openmrs",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.4.0",
|
|
4
4
|
"license": "MPL-2.0",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"homepage": "https://github.com/openmrs/openmrs-esm-core#readme",
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@babel/preset-typescript": "^7.16.7",
|
|
36
|
-
"@openmrs/esm-app-shell": "^3.
|
|
37
|
-
"@openmrs/webpack-config": "^3.
|
|
36
|
+
"@openmrs/esm-app-shell": "^3.4.0",
|
|
37
|
+
"@openmrs/webpack-config": "^3.4.0",
|
|
38
38
|
"@types/react": "^16.9.46",
|
|
39
39
|
"@types/systemjs": "^6.1.0",
|
|
40
40
|
"autoprefixer": "^10.4.2",
|
|
@@ -68,5 +68,5 @@
|
|
|
68
68
|
"@types/rimraf": "^2.0.2",
|
|
69
69
|
"@types/tar": "^4.0.3"
|
|
70
70
|
},
|
|
71
|
-
"gitHead": "
|
|
71
|
+
"gitHead": "51e0d8495e4dbd18d18da19267ed4a792ab4fc6c"
|
|
72
72
|
}
|
package/src/commands/assemble.ts
CHANGED
|
@@ -159,6 +159,7 @@ async function extractFiles(sourceFile: string, targetDir: string) {
|
|
|
159
159
|
|
|
160
160
|
Object.keys(files)
|
|
161
161
|
.filter((m) => m.startsWith(`${packageRoot}/${sourceDir}`))
|
|
162
|
+
.filter((m) => !m.endsWith(".map"))
|
|
162
163
|
.forEach((m) => {
|
|
163
164
|
const content = files[m];
|
|
164
165
|
const fileName = m.replace(`${packageRoot}/${sourceDir}/`, "");
|