@sap-ux/generator-adp 0.5.4 → 0.5.6
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/app/index.js +3 -1
- package/package.json +5 -5
package/generators/app/index.js
CHANGED
|
@@ -151,7 +151,9 @@ class default_1 extends yeoman_generator_1.default {
|
|
|
151
151
|
this._setupLogging();
|
|
152
152
|
this.options = opts;
|
|
153
153
|
this.isMtaYamlFound = (0, adp_tooling_1.isMtaProject)(process.cwd());
|
|
154
|
-
this.isExtensionInstalled = (0,
|
|
154
|
+
this.isExtensionInstalled = (0, feature_toggle_1.isInternalFeaturesSettingEnabled)()
|
|
155
|
+
? (0, fiori_generator_shared_1.isExtensionInstalled)(opts.vscode, 'SAP.adp-ve-bas-ext')
|
|
156
|
+
: false;
|
|
155
157
|
const jsonInputString = (0, parse_json_input_1.getFirstArgAsString)(args);
|
|
156
158
|
this.jsonInput = (0, parse_json_input_1.parseJsonInput)(jsonInputString, this.logger);
|
|
157
159
|
if (!this.jsonInput) {
|
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.5.
|
|
6
|
+
"version": "0.5.6",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
9
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -30,18 +30,18 @@
|
|
|
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.16.4",
|
|
33
34
|
"@sap-ux/axios-extension": "1.23.0",
|
|
34
35
|
"@sap-ux/btp-utils": "1.1.4",
|
|
35
36
|
"@sap-ux/feature-toggle": "0.3.2",
|
|
37
|
+
"@sap-ux/inquirer-common": "0.8.0",
|
|
36
38
|
"@sap-ux/logger": "0.7.0",
|
|
37
|
-
"@sap-ux/inquirer-common": "0.7.51",
|
|
38
39
|
"@sap-ux/project-access": "1.32.4",
|
|
39
40
|
"@sap-ux/store": "1.2.0",
|
|
40
41
|
"@sap-ux/system-access": "0.6.20",
|
|
41
42
|
"@sap-ux/project-input-validator": "0.6.26",
|
|
42
43
|
"@sap-ux/fiori-generator-shared": "0.13.23",
|
|
43
|
-
"@sap-ux/odata-service-writer": "0.27.25"
|
|
44
|
-
"@sap-ux/adp-tooling": "0.16.2"
|
|
44
|
+
"@sap-ux/odata-service-writer": "0.27.25"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
47
|
"@jest/types": "30.0.1",
|
|
@@ -56,7 +56,7 @@
|
|
|
56
56
|
"fs-extra": "10.0.0",
|
|
57
57
|
"rimraf": "5.0.5",
|
|
58
58
|
"yeoman-test": "6.3.0",
|
|
59
|
-
"@sap-ux/deploy-config-sub-generator": "0.4.
|
|
59
|
+
"@sap-ux/deploy-config-sub-generator": "0.4.25"
|
|
60
60
|
},
|
|
61
61
|
"engines": {
|
|
62
62
|
"node": ">=20.x"
|