@sap-ux/adp-tooling 0.9.2 → 0.9.4
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.
|
@@ -137,13 +137,14 @@ function findChangeWithInboundId(projectPath, inboundId) {
|
|
|
137
137
|
};
|
|
138
138
|
}
|
|
139
139
|
try {
|
|
140
|
-
const
|
|
141
|
-
|
|
140
|
+
const files = (0, fs_1.readdirSync)(pathToInboundChangeFiles, { withFileTypes: true }).filter((dirent) => dirent.isFile() && dirent.name.includes('changeInbound'));
|
|
141
|
+
for (const file of files) {
|
|
142
142
|
const pathToFile = path_1.default.join(pathToInboundChangeFiles, file.name);
|
|
143
143
|
const change = JSON.parse((0, fs_1.readFileSync)(pathToFile, 'utf-8'));
|
|
144
144
|
if (((_a = change.content) === null || _a === void 0 ? void 0 : _a.inboundId) === inboundId) {
|
|
145
145
|
changeObj = change;
|
|
146
146
|
filePath = pathToFile;
|
|
147
|
+
break;
|
|
147
148
|
}
|
|
148
149
|
}
|
|
149
150
|
return {
|
package/package.json
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"bugs": {
|
|
10
10
|
"url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue+label%3Abug+label%3Aadp-tooling"
|
|
11
11
|
},
|
|
12
|
-
"version": "0.9.
|
|
12
|
+
"version": "0.9.4",
|
|
13
13
|
"license": "Apache-2.0",
|
|
14
14
|
"author": "@SAP/ux-tools-team",
|
|
15
15
|
"main": "dist/index.js",
|
|
@@ -45,9 +45,9 @@
|
|
|
45
45
|
"express": "4.18.2",
|
|
46
46
|
"dotenv": "16.3.1",
|
|
47
47
|
"nock": "13.4.0",
|
|
48
|
-
"rimraf": "5.0.
|
|
48
|
+
"rimraf": "5.0.5",
|
|
49
49
|
"supertest": "6.3.3",
|
|
50
|
-
"@sap-ux/project-access": "1.
|
|
50
|
+
"@sap-ux/project-access": "1.19.0",
|
|
51
51
|
"@sap-ux/store": "0.5.0"
|
|
52
52
|
},
|
|
53
53
|
"engines": {
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"@sap-ux/preview-middleware": "^0.11.1",
|
|
15
15
|
"@sap-ux/ui5-proxy-middleware": "^1.3.0",
|
|
16
16
|
"@sap-ux/deploy-tooling": "^0.11.7"<%}%>,
|
|
17
|
-
"@ui5/cli": "^3.
|
|
17
|
+
"@ui5/cli": "^3.9.1"
|
|
18
18
|
},
|
|
19
19
|
"scripts": {
|
|
20
20
|
"build": "ui5 build --exclude-task generateFlexChangesBundle generateComponentPreload --clean-dest",
|