@sap/ux-ui5-tooling 1.3.0 → 1.3.5

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.
@@ -0,0 +1,37 @@
1
+ SAP Fiori tools CLI.
2
+
3
+ COMMAND NAME:
4
+
5
+ add - Create or update a target configuration
6
+
7
+ USAGE:
8
+
9
+ fiori add [SUBCOMMAND] [...OPTIONS]
10
+
11
+ SUBCOMMANDS:
12
+
13
+ deploy-config - Generate or update deploy config in ui5-deploy.yaml file.
14
+ | | | |
15
+ |---------------|----|----------------------------|
16
+ | --package | -p | Package name of target deploy system |
17
+ | --transport | -t | Transport number of target deploy system |
18
+ | --client | -l | Client number of target deploy system |
19
+ | --index | -i | Generate index.html in the app (y/n) |
20
+ | --overwrite | -f | Overwrite existing deploy config (y/n) |
21
+ | --config | -c | App deploy config file name if it is not ui5-deploy.yaml |
22
+ | --base | -b | App configuration file name if it is not ui5.yaml |
23
+
24
+ flp-config - Generate or update Fior Launchpad configuration
25
+ | | | |
26
+ |---------------|----|----------------------------|
27
+ | --object | -o | Semantic object |
28
+ | --action | -a | Action |
29
+ | --title | -t | Title displayed on Fiori Launchpad tile |
30
+ | --subtitle | -s | Subtile displayed on Fiori Launchpad tile |
31
+ | --overwrite | -f | Overwrite existing FLP config (y/n) |
32
+
33
+ flp-embedded-config - Adds the necessary configuration for running a Fiori application in FLP Embedded Mode. Mandatory parameters
34
+ | | | |
35
+ |---------------|----|----------------------------|
36
+ | --config | | Path to the YAML file from which to copy the backend configuration |
37
+ | --flp | | Path to the FLP in the backend, e.g. sap/bc/ui5_ui5/ui2/ushell/shells/abap/Fiorilaunchpad.html |
@@ -0,0 +1,9 @@
1
+ SAP Fiori tools CLI.
2
+
3
+ COMMAND NAME:
4
+
5
+ cfDeploy - Deploy project bundle to Cloud Foundry
6
+
7
+ USAGE:
8
+
9
+ fiori cfDeploy
@@ -0,0 +1,27 @@
1
+ SAP Fiori tools CLI.
2
+
3
+ COMMAND NAME:
4
+
5
+ deploy - Deploy project bundle to ABAP system
6
+
7
+ USAGE:
8
+
9
+ fiori deploy [...OPTIONS]
10
+
11
+ OPTIONS:
12
+
13
+ | | | |
14
+ |----------------|-----|-------------|
15
+ | --config | -c | Path to deployment config yaml file, default ui5-deploy.yaml |
16
+ | --destination | -d | Destination of BTP system |
17
+ | --failfast | -f | Terminate deploy and throw error when encoutering first error (y/N) |
18
+ | --yes | -y | Generate index.html file (y/n) |
19
+ | --url | -u | URL of deploy target ABAP system |
20
+ | --client | -l | Client number of deploy target ABAP system |
21
+ | --transport | -t | Transport number for deploy target ABAP system |
22
+ | --name | -n | Project name of the app |
23
+ | --package | -p | Package name for deploy target ABAP system |
24
+ | --description | -e | Project description of the app |
25
+ | --archive-url | -au | Download app bundle from this url and upload this bundle for deployment |
26
+ | --strict-ssl | -ss | Perform certificate validation on archive url (Y/n)|
27
+ | --archive-path | -ap | Provide path of the app bundle for deployment |
@@ -0,0 +1,21 @@
1
+ SAP Fiori tools CLI.
2
+
3
+ USAGE:
4
+
5
+ fiori [COMMAND] [COMMAND OPTIONS]
6
+
7
+ COMMAND:
8
+
9
+ | | | |
10
+ |---------------|-|-----------------------------------------|
11
+ | add | | Create or update a target configuration |
12
+ | run | | Starts a local web server for running a FE application |
13
+ | deploy | | Deploy project bundle to ABAP system |
14
+ | undeploy | | Undeploy project on ABAP system |
15
+ | cfDeploy | | Deploy project bundle to Cloud Foundry |
16
+
17
+ GLOBAL COMMAND OPTIONS:
18
+
19
+ | | | |
20
+ |---------------|----|-------------|
21
+ | --help | -h | Show help for the given command |
@@ -0,0 +1,24 @@
1
+ SAP Fiori tools CLI.
2
+
3
+ COMMAND NAME:
4
+
5
+ run - Starts a local web server for running a FE application
6
+
7
+ USAGE:
8
+
9
+ fiori run [...OPTIONS]
10
+
11
+ OPTIONS:
12
+
13
+ | | | |
14
+ |----------------|-----|-------------|
15
+ | --config | -c | Path to config file (default: ui5.yaml in project root folder) |
16
+ | --verbose | | Enable verbose logging (default: false) |
17
+ | --port | -p | Port to start the server on (default for HTTP: 8080, HTTPS: 8443) |
18
+ | --open | -o | Open web server root directory in default browser |
19
+ | --https | | Enables HTTPS over the HTTP/2 protocol for the web server (default: false). If --key and --cert parameters are not provided with this parameter, a private key and certificate will be created automatically if OpenSSL is installed. Using HTTPS over HTTP/2 is currently not supported in SAP Business Application Studio |
20
+ | --key | | Path to the private key for https (default: "$HOME/.ui5/server/server.key") |
21
+ | --cert | | Path to the certificate for https (default: "$HOME/.ui5/server/server.crt") |
22
+ | --ui5 | | UI5 version to use when running the application (default: version from ui5.yaml) |
23
+ | --ui5Uri | | UI5 uri to load the UI5 resources from (default: uri from ui5.yaml) |
24
+ | --proxy | | Proxy configuration. e.g. https://myproxy:8443 (default: uses host machine proxy configuration) |
@@ -0,0 +1,19 @@
1
+ SAP Fiori tools CLI.
2
+
3
+ COMMAND NAME:
4
+
5
+ undeploy - Undeploy project on ABAP system
6
+
7
+ USAGE:
8
+
9
+ fiori undeploy [...OPTIONS]
10
+
11
+ OPTIONS:
12
+
13
+ | | | |
14
+ |----------------|-----|-------------|
15
+ | --config | -c | Path to deployment config yaml file, default ui5-deploy.yaml |
16
+ | --destination | -d | Destination of BTP system |
17
+ | --url | -u | URL of deploy target ABAP system |
18
+ | --transport | -t | Transport number for deploy target ABAP system |
19
+ | --name | -n | Project name of the app |