@sap-ux/generator-adp 0.7.25 → 0.7.27
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/generators/utils/deps.js +3 -3
- package/package.json +13 -13
package/generators/utils/deps.js
CHANGED
|
@@ -36,9 +36,9 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
36
36
|
exports.getPackageInfo = getPackageInfo;
|
|
37
37
|
exports.installDependencies = installDependencies;
|
|
38
38
|
const node_path_1 = require("node:path");
|
|
39
|
-
const util = __importStar(require("util"));
|
|
39
|
+
const util = __importStar(require("node:util"));
|
|
40
40
|
const node_fs_1 = require("node:fs");
|
|
41
|
-
const
|
|
41
|
+
const node_child_process_1 = require("node:child_process");
|
|
42
42
|
/**
|
|
43
43
|
* Reads the package.json of the current package.
|
|
44
44
|
*
|
|
@@ -53,7 +53,7 @@ function getPackageInfo() {
|
|
|
53
53
|
* @param {string} projectPath - The project directory.
|
|
54
54
|
*/
|
|
55
55
|
async function installDependencies(projectPath) {
|
|
56
|
-
const execAsync = util.promisify(
|
|
56
|
+
const execAsync = util.promisify(node_child_process_1.exec);
|
|
57
57
|
try {
|
|
58
58
|
await execAsync(`cd ${projectPath} && npm i`);
|
|
59
59
|
}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"displayName": "SAPUI5 Adaptation Project",
|
|
4
4
|
"homepage": "https://help.sap.com/viewer/584e0bcbfd4a4aff91c815cefa0bce2d/Cloud/en-US/ada9567b767941aba8d49fdb4fdedea7.html",
|
|
5
5
|
"description": "Adaptation project allows you to create an app variant for an existing SAP Fiori elements-based or SAPUI5 freestyle application, without changing the original application.",
|
|
6
|
-
"version": "0.7.
|
|
6
|
+
"version": "0.7.27",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -30,19 +30,19 @@
|
|
|
30
30
|
"i18next": "25.3.0",
|
|
31
31
|
"yeoman-generator": "5.10.0",
|
|
32
32
|
"uuid": "10.0.0",
|
|
33
|
-
"@sap-ux/adp-tooling": "0.18.
|
|
34
|
-
"@sap-ux/axios-extension": "1.25.
|
|
33
|
+
"@sap-ux/adp-tooling": "0.18.27",
|
|
34
|
+
"@sap-ux/axios-extension": "1.25.2",
|
|
35
35
|
"@sap-ux/btp-utils": "1.1.6",
|
|
36
36
|
"@sap-ux/feature-toggle": "0.3.5",
|
|
37
|
-
"@sap-ux/inquirer-common": "0.10.
|
|
38
|
-
"@sap-ux/logger": "0.
|
|
39
|
-
"@sap-ux/project-access": "1.
|
|
40
|
-
"@sap-ux/store": "1.4.
|
|
41
|
-
"@sap-ux/system-access": "0.6.
|
|
42
|
-
"@sap-ux/project-input-validator": "0.6.
|
|
43
|
-
"@sap-ux/fiori-generator-shared": "0.13.
|
|
44
|
-
"@sap-ux/odata-service-writer": "0.29.
|
|
45
|
-
"@sap-ux/telemetry": "0.6.
|
|
37
|
+
"@sap-ux/inquirer-common": "0.10.3",
|
|
38
|
+
"@sap-ux/logger": "0.8.0",
|
|
39
|
+
"@sap-ux/project-access": "1.33.0",
|
|
40
|
+
"@sap-ux/store": "1.4.2",
|
|
41
|
+
"@sap-ux/system-access": "0.6.36",
|
|
42
|
+
"@sap-ux/project-input-validator": "0.6.40",
|
|
43
|
+
"@sap-ux/fiori-generator-shared": "0.13.46",
|
|
44
|
+
"@sap-ux/odata-service-writer": "0.29.2",
|
|
45
|
+
"@sap-ux/telemetry": "0.6.50"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
48
|
"@jest/types": "30.0.1",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"fs-extra": "10.0.0",
|
|
58
58
|
"rimraf": "6.0.1",
|
|
59
59
|
"yeoman-test": "6.3.0",
|
|
60
|
-
"@sap-ux/deploy-config-sub-generator": "0.5.
|
|
60
|
+
"@sap-ux/deploy-config-sub-generator": "0.5.26"
|
|
61
61
|
},
|
|
62
62
|
"engines": {
|
|
63
63
|
"node": ">=20.x"
|