@sap-ux/create 0.11.95 → 0.12.0
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.
|
@@ -24,6 +24,7 @@ function addGenerateAdaptationProjectCommand(cmd) {
|
|
|
24
24
|
.option('--url [url]', 'url pointing to the target system containing the original app')
|
|
25
25
|
.option('--ignoreCertErrors', 'ignore certificate errors when connecting to the target system')
|
|
26
26
|
.option('--ft', 'enable the Fiori tools for the generated project')
|
|
27
|
+
.option('--ts', 'enable the TypeScript support for the generated project')
|
|
27
28
|
.option('--package [package]', 'ABAP package to be used for deployments')
|
|
28
29
|
.option('--transport [transport]', 'ABAP transport to be used for deployments')
|
|
29
30
|
.action(async (path, options) => {
|
|
@@ -94,7 +95,8 @@ function createConfigFromDefaults(defaults) {
|
|
|
94
95
|
transport: defaults.transport ? defaults.transport.toUpperCase() : undefined
|
|
95
96
|
},
|
|
96
97
|
options: {
|
|
97
|
-
fioriTools: defaults.ft
|
|
98
|
+
fioriTools: defaults.ft,
|
|
99
|
+
enableTypeScript: defaults.ts
|
|
98
100
|
}
|
|
99
101
|
};
|
|
100
102
|
}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sap-ux/create",
|
|
3
3
|
"description": "SAP Fiori tools module to add or remove features",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.12.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "https://github.com/SAP/open-ux-tools.git",
|
|
@@ -32,18 +32,18 @@
|
|
|
32
32
|
"prompts": "2.4.2",
|
|
33
33
|
"@sap-ux/abap-deploy-config-inquirer": "1.2.18",
|
|
34
34
|
"@sap-ux/abap-deploy-config-writer": "0.0.89",
|
|
35
|
-
"@sap-ux/adp-tooling": "0.
|
|
35
|
+
"@sap-ux/adp-tooling": "0.13.0",
|
|
36
36
|
"@sap-ux/app-config-writer": "0.5.32",
|
|
37
37
|
"@sap-ux/cap-config-writer": "0.9.11",
|
|
38
38
|
"@sap-ux/cards-editor-config-writer": "0.4.10",
|
|
39
39
|
"@sap-ux/logger": "0.6.0",
|
|
40
40
|
"@sap-ux/mockserver-config-writer": "0.8.1",
|
|
41
41
|
"@sap-ux/odata-service-writer": "0.26.3",
|
|
42
|
-
"@sap-ux/preview-middleware": "0.
|
|
42
|
+
"@sap-ux/preview-middleware": "0.18.0",
|
|
43
43
|
"@sap-ux/project-access": "1.29.8",
|
|
44
44
|
"@sap-ux/system-access": "0.5.31",
|
|
45
45
|
"@sap-ux/ui5-config": "0.26.2",
|
|
46
|
-
"@sap-ux/flp-config-inquirer": "0.2.
|
|
46
|
+
"@sap-ux/flp-config-inquirer": "0.2.45"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
49
|
"@types/diff": "5.0.9",
|