@sap-ux/deploy-config-sub-generator 0.0.1
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/LICENSE +201 -0
- package/README.md +18 -0
- package/generators/app/index.d.ts +57 -0
- package/generators/app/index.js +168 -0
- package/generators/app/prompting.d.ts +40 -0
- package/generators/app/prompting.js +47 -0
- package/generators/app/utils.d.ts +20 -0
- package/generators/app/utils.js +41 -0
- package/generators/prompts/deploy-target.d.ts +17 -0
- package/generators/prompts/deploy-target.js +38 -0
- package/generators/prompts/index.d.ts +3 -0
- package/generators/prompts/index.js +8 -0
- package/generators/prompts/sub-gen.d.ts +39 -0
- package/generators/prompts/sub-gen.js +82 -0
- package/generators/translations/deploy-config-sub-generator.i18n.json +12 -0
- package/generators/types/index.d.ts +141 -0
- package/generators/types/index.js +3 -0
- package/generators/utils/config.d.ts +17 -0
- package/generators/utils/config.js +41 -0
- package/generators/utils/constants.d.ts +6 -0
- package/generators/utils/constants.js +11 -0
- package/generators/utils/environment.d.ts +34 -0
- package/generators/utils/environment.js +67 -0
- package/generators/utils/i18n.d.ts +14 -0
- package/generators/utils/i18n.js +36 -0
- package/generators/utils/index.d.ts +6 -0
- package/generators/utils/index.js +22 -0
- package/generators/utils/targets.d.ts +16 -0
- package/generators/utils/targets.js +44 -0
- package/package.json +78 -0
package/package.json
ADDED
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sap-ux/deploy-config-sub-generator",
|
|
3
|
+
"description": "Main generator for configuring ABAP or Cloud Foundry deployment configuration",
|
|
4
|
+
"version": "0.0.1",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
8
|
+
"directory": "packages/deploy-config-sub-generator"
|
|
9
|
+
},
|
|
10
|
+
"bugs": {
|
|
11
|
+
"url": "https://github.com/SAP/open-ux-tools/issues?q=is%3Aopen+is%3Aissue"
|
|
12
|
+
},
|
|
13
|
+
"license": "Apache-2.0",
|
|
14
|
+
"main": "generators/app/index.js",
|
|
15
|
+
"files": [
|
|
16
|
+
"LICENSE",
|
|
17
|
+
"generators",
|
|
18
|
+
"!generators/*.map",
|
|
19
|
+
"!generators/**/*.map"
|
|
20
|
+
],
|
|
21
|
+
"dependencies": {
|
|
22
|
+
"@sap-devx/yeoman-ui-types": "1.16.9",
|
|
23
|
+
"dotenv": "16.3.1",
|
|
24
|
+
"hasbin": "1.2.3",
|
|
25
|
+
"i18next": "23.5.1",
|
|
26
|
+
"inquirer-autocomplete-prompt": "2.0.1",
|
|
27
|
+
"yeoman-generator": "5.10.0",
|
|
28
|
+
"@sap-ux/axios-extension": "1.19.0",
|
|
29
|
+
"@sap-ux/btp-utils": "1.0.1",
|
|
30
|
+
"@sap-ux/cf-deploy-config-sub-generator": "0.1.24",
|
|
31
|
+
"@sap-ux/abap-deploy-config-sub-generator": "0.0.49",
|
|
32
|
+
"@sap-ux/deploy-config-generator-shared": "0.0.35",
|
|
33
|
+
"@sap-ux/fiori-generator-shared": "0.9.7",
|
|
34
|
+
"@sap-ux/i18n": "0.2.3",
|
|
35
|
+
"@sap-ux/inquirer-common": "0.6.27",
|
|
36
|
+
"@sap-ux/nodejs-utils": "0.1.7",
|
|
37
|
+
"@sap-ux/odata-service-inquirer": "2.2.19",
|
|
38
|
+
"@sap-ux/project-access": "1.29.14",
|
|
39
|
+
"@sap-ux/store": "1.0.0",
|
|
40
|
+
"@sap-ux/ui5-config": "0.26.3"
|
|
41
|
+
},
|
|
42
|
+
"devDependencies": {
|
|
43
|
+
"@jest/types": "29.6.3",
|
|
44
|
+
"@types/hasbin": "1.2.2",
|
|
45
|
+
"@types/inquirer": "8.2.6",
|
|
46
|
+
"@types/inquirer-autocomplete-prompt": "2.0.1",
|
|
47
|
+
"@types/js-yaml": "4.0.9",
|
|
48
|
+
"@types/mem-fs": "1.1.2",
|
|
49
|
+
"@types/mem-fs-editor": "7.0.1",
|
|
50
|
+
"@types/yeoman-generator": "5.2.11",
|
|
51
|
+
"@types/yeoman-environment": "2.10.11",
|
|
52
|
+
"@types/yeoman-test": "4.0.6",
|
|
53
|
+
"@sap/mta-lib": "1.7.4",
|
|
54
|
+
"js-yaml": "4.1.0",
|
|
55
|
+
"memfs": "3.4.13",
|
|
56
|
+
"rimraf": "5.0.5",
|
|
57
|
+
"typescript": "5.3.3",
|
|
58
|
+
"unionfs": "4.4.0",
|
|
59
|
+
"yeoman-test": "6.3.0",
|
|
60
|
+
"@sap-ux/cf-deploy-config-inquirer": "0.2.16",
|
|
61
|
+
"@sap-ux/cf-deploy-config-writer": "0.1.19",
|
|
62
|
+
"@sap-ux/logger": "0.6.0"
|
|
63
|
+
},
|
|
64
|
+
"engines": {
|
|
65
|
+
"node": ">=18.x"
|
|
66
|
+
},
|
|
67
|
+
"scripts": {
|
|
68
|
+
"build": "tsc --build",
|
|
69
|
+
"clean": "rimraf --glob generators test/test-output coverage *.tsbuildinfo",
|
|
70
|
+
"watch": "tsc --watch",
|
|
71
|
+
"lint": "eslint . --ext .ts",
|
|
72
|
+
"lint:fix": "eslint . --ext .ts --fix",
|
|
73
|
+
"test": "jest --ci --forceExit --detectOpenHandles --colors --passWithNoTests",
|
|
74
|
+
"test-u": "jest --ci --forceExit --detectOpenHandles --colors -u",
|
|
75
|
+
"link": "pnpm link --global",
|
|
76
|
+
"unlink": "pnpm unlink --global"
|
|
77
|
+
}
|
|
78
|
+
}
|