@sap-ux/adp-tooling 0.18.125 → 0.18.128

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.
@@ -26,8 +26,7 @@ async function isLoggedInCf(cfConfig, logger) {
26
26
  return false;
27
27
  }
28
28
  try {
29
- const token = await (0, cf_tools_1.cfGetAuthToken)();
30
- logger?.log(`Retrieved CF auth token: ${token}`);
29
+ await (0, cf_tools_1.cfGetAuthToken)();
31
30
  return true;
32
31
  }
33
32
  catch (e) {
@@ -164,7 +164,7 @@ async function getCfUi5AppInfo(appId, appHostIds, cfConfig, logger) {
164
164
  const requestArguments = getFDCRequestArguments(cfConfig);
165
165
  const appHostIdParams = appHostIds.map((id) => `appHostId=${encodeURIComponent(id)}`).join('&');
166
166
  const url = `${requestArguments.url}/api/business-service/ui5appinfo?appId=${encodeURIComponent(appId)}&${appHostIdParams}`;
167
- logger?.log(`Fetching ui5AppInfo.json from FDC: ${url}`);
167
+ logger?.log(`Fetching ui5AppInfo.json`);
168
168
  try {
169
169
  const response = await axios_1.default.get(url, requestArguments.options);
170
170
  if (response.status === 200) {
package/dist/writer/cf.js CHANGED
@@ -125,6 +125,8 @@ async function setupCfPreview(basePath, yamlPath, cfConfig, logger) {
125
125
  throw new Error('No app host IDs found in service keys.');
126
126
  }
127
127
  await writeUi5AppInfo(basePath, ui5AppInfo, logger);
128
+ logger?.log('Starting build');
128
129
  await (0, project_builder_1.runBuild)(basePath, { ADP_BUILDER_MODE: 'preview' });
130
+ logger?.log('Build completed');
129
131
  }
130
132
  //# sourceMappingURL=cf.js.map
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.18.125",
12
+ "version": "0.18.128",
13
13
  "license": "Apache-2.0",
14
14
  "author": "@SAP/ux-tools-team",
15
15
  "main": "dist/index.js",
@@ -36,17 +36,17 @@
36
36
  "prompts": "2.4.2",
37
37
  "sanitize-filename": "1.6.4",
38
38
  "uuid": "11.1.0",
39
- "@sap-ux/axios-extension": "1.25.33",
39
+ "@sap-ux/axios-extension": "1.25.34",
40
40
  "@sap-ux/btp-utils": "1.1.14",
41
- "@sap-ux/i18n": "0.3.10",
42
- "@sap-ux/inquirer-common": "0.11.42",
41
+ "@sap-ux/i18n": "0.3.11",
42
+ "@sap-ux/inquirer-common": "0.11.43",
43
43
  "@sap-ux/logger": "0.8.5",
44
44
  "@sap-ux/nodejs-utils": "0.2.21",
45
- "@sap-ux/odata-service-writer": "0.31.10",
46
- "@sap-ux/project-access": "1.36.1",
47
- "@sap-ux/project-input-validator": "0.6.80",
45
+ "@sap-ux/odata-service-writer": "0.31.11",
46
+ "@sap-ux/project-access": "1.36.2",
47
+ "@sap-ux/project-input-validator": "0.6.81",
48
48
  "@sap-ux/store": "1.5.13",
49
- "@sap-ux/system-access": "0.7.9",
49
+ "@sap-ux/system-access": "0.7.10",
50
50
  "@sap-ux/ui5-config": "0.30.3",
51
51
  "@sap-ux/ui5-info": "0.13.20"
52
52
  },
@@ -30,6 +30,6 @@
30
30
  "@ui5/task-adaptation": "^1.6.3",
31
31
  "bestzip": "^2.2.1",
32
32
  "rimraf": "^6.1.2",
33
- "mbt": "^1.2.34"
33
+ "mbt": "^1.2.49"
34
34
  }
35
35
  }