@sap/ux-ui5-tooling 1.8.5 → 1.8.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/dist/cli/index.js +2111 -595
- package/dist/markdowns/deploy/deploy.en.md +14 -0
- package/dist/middlewares/fiori-tools-appreload.js +4 -1
- package/dist/middlewares/fiori-tools-preview.js +1062 -60
- package/dist/middlewares/fiori-tools-proxy.js +1093 -91
- package/dist/middlewares/fiori-tools-servestatic.js +4 -1
- package/dist/tasks/cf-deploy/index.js +1054 -55
- package/dist/tasks/deploy/index.js +48238 -46724
- package/dist/templates/control-property-editor/app.css +1 -1
- package/dist/templates/control-property-editor/app.js +48 -49
- package/package.json +11 -10
|
@@ -9083,7 +9083,9 @@ var i18n_default = {
|
|
|
9083
9083
|
INFO_CREATE_ARCHIVE: "Create Archive",
|
|
9084
9084
|
INFO_COMMAND_FAILED: "Command {{cmd}} failed with error {{-message}}",
|
|
9085
9085
|
INFO_DEPLOYMENT_SUCCESSFUL: "Deployment Successful.",
|
|
9086
|
-
INFO_DEPLOYMENT_FAILED: "Deployment Failed.",
|
|
9086
|
+
INFO_DEPLOYMENT_FAILED: "Deployment Failed. You can re-run deployment with the following command to get more detailed log information:",
|
|
9087
|
+
INFO_DEPLOYMENT_DEBUG_WIN: "Windows: set DEBUG=ux-odata-client & npm run deploy",
|
|
9088
|
+
INFO_DEPLOYMENT_DEBUG_LINUX: "MacOs/Linux: DEBUG=ux-odata-client npm run deploy",
|
|
9087
9089
|
INFO_TEST_MODE: "Deployment in TestMode completed. A successful TestMode execution does not necessarily mean that your upload will be successful",
|
|
9088
9090
|
ERROR_NO_SYSTEM_IN_STORE: "Error in deployment. The BTP system used in the deployment configuration could not be found as one of your local saved SAP systems. Please ensure you have saved this system locally so that it can be used for deployment.",
|
|
9089
9091
|
INFO_FILE_PATH_ADDED: "{{path}} added",
|
|
@@ -9161,6 +9163,7 @@ var i18n_default = {
|
|
|
9161
9163
|
ERROR_READING_MANIFEST_JSON: "Error reading manifest.json from '{{manifestPath}}'. Error was : '{{message}}'.",
|
|
9162
9164
|
REMOVED_VERSION_INFO: "Version {{oldVersion}} is not available on the SAPUI5 SDK, using version {{newVersion}} instead.",
|
|
9163
9165
|
ABAP_DEPLOYMENT_404_WARNING: "Request failed with status code 404. Guided Answers troubleshooting guide available at https://ga.support.sap.com/dtp/viewer/index.html#/tree/3046/actions/45995:45996:45999:46000:46002",
|
|
9166
|
+
ABAP_UNDEPLOYMENT_404_WARNING: "The SAPUI5 ABAP repository with name {{name}} does not exist. Please check if it has already been undeployed.",
|
|
9164
9167
|
UI5_VERSION_CHECK_FAILED: "Unable to check if the {{version}} is available on the SAPUI5 SDK. Proceeding with loading the preview with this version."
|
|
9165
9168
|
};
|
|
9166
9169
|
|