@sap-ux/cf-deploy-config-sub-generator 0.2.8 → 0.2.10
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 +5 -0
- package/package.json +5 -5
package/generators/app/index.js
CHANGED
|
@@ -72,6 +72,11 @@ class default_1 extends deploy_config_generator_shared_1.DeploymentGenerator {
|
|
|
72
72
|
await super.initializing();
|
|
73
73
|
await (0, utils_1.initI18n)();
|
|
74
74
|
deploy_config_generator_shared_1.DeploymentGenerator.logger?.debug((0, utils_1.t)('cfGen.debug.initTelemetry'));
|
|
75
|
+
// hack to suppress yeoman's overwrite prompt when files already exist
|
|
76
|
+
// required when running the deploy config generator in standalone mode
|
|
77
|
+
if (this.env.conflicter) {
|
|
78
|
+
this.env.conflicter.force = this.options.force ?? true;
|
|
79
|
+
}
|
|
75
80
|
await fiori_generator_shared_1.TelemetryHelper.initTelemetrySettings({
|
|
76
81
|
consumerModule: {
|
|
77
82
|
name: '@sap-ux/cf-deploy-config-sub-generator',
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/cf-deploy-config-sub-generator",
|
|
3
3
|
"description": "Generators for configuring Cloud Foundry deployment configuration",
|
|
4
|
-
"version": "0.2.
|
|
4
|
+
"version": "0.2.10",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -23,13 +23,13 @@
|
|
|
23
23
|
"hasbin": "1.2.3",
|
|
24
24
|
"i18next": "23.5.1",
|
|
25
25
|
"yeoman-generator": "5.10.0",
|
|
26
|
-
"@sap-ux/cf-deploy-config-writer": "0.3.2",
|
|
27
|
-
"@sap-ux/cf-deploy-config-inquirer": "0.3.7",
|
|
28
|
-
"@sap-ux/deploy-config-generator-shared": "0.1.6",
|
|
29
26
|
"@sap-ux/btp-utils": "1.1.0",
|
|
27
|
+
"@sap-ux/cf-deploy-config-writer": "0.3.3",
|
|
28
|
+
"@sap-ux/cf-deploy-config-inquirer": "0.3.8",
|
|
29
|
+
"@sap-ux/deploy-config-generator-shared": "0.1.7",
|
|
30
30
|
"@sap-ux/feature-toggle": "0.3.0",
|
|
31
31
|
"@sap-ux/fiori-generator-shared": "0.12.6",
|
|
32
|
-
"@sap-ux/inquirer-common": "0.7.
|
|
32
|
+
"@sap-ux/inquirer-common": "0.7.8",
|
|
33
33
|
"@sap-ux/project-access": "1.30.2"
|
|
34
34
|
},
|
|
35
35
|
"devDependencies": {
|