@sap/artifact-management 1.17.2 → 1.18.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.
- package/README.md +2 -0
- package/dist/projectapi.js +3 -0
- package/dist/projectapi.js.LICENSE.txt +86 -0
- package/dist/src/cp/templates/file-templates/OverviewPage-template.html +1 -1
- package/dist/src/cp/templates/file-templates/launchpadPage-template.html +2 -2
- package/dist/src/index.js +3 -1
- package/dist/src/index.js.map +1 -1
- package/dist/src/project-api/CommandExecutor.js +232 -0
- package/dist/src/project-api/CommandExecutor.js.map +1 -0
- package/dist/src/project-api/ProjectCLI.js +125 -409
- package/dist/src/project-api/ProjectCLI.js.map +1 -1
- package/dist/templates/assets/SAP_R_grad.svg +1 -0
- package/dist/templates/assets/header.jpg +0 -0
- package/dist/templates/assets/launchpad.css +7 -0
- package/dist/templates/assets/preview.css +78 -0
- package/dist/templates/file-templates/OverviewPage-template.html +52 -0
- package/dist/templates/file-templates/Preview-template.xml +108 -0
- package/dist/templates/file-templates/launchpadPage-template.html +29 -0
- package/dist/templates/launchpad-ui5-app-template/package.json +18 -0
- package/dist/templates/launchpad-ui5-app-template/ui5.yaml +5 -0
- package/dist/templates/launchpad-ui5-app-template/webapp/i18n/i18n.properties +9 -0
- package/dist/templates/launchpad-ui5-app-template/webapp/manifest.json +84 -0
- package/dist/templates/launchpad-ui5-app-template/webapp/xs-app.json +31 -0
- package/dist/templates/mta-cap-db-template.yaml +10 -0
- package/dist/templates/mta-cap-srv-template.yaml +14 -0
- package/dist/templates/mta-cap-template.yaml +21 -0
- package/dist/templates/mta-ui-deployer-template.yaml +6 -0
- package/dist/tsconfig.tsbuildinfo +100 -63
- package/dist/types/src/index.d.ts +1 -0
- package/dist/types/src/project-api/CommandExecutor.d.ts +5 -0
- package/package.json +7 -17
package/README.md
CHANGED
|
@@ -79,6 +79,8 @@ const workspace = new WorkspaceImpl(vscode);
|
|
|
79
79
|
|
|
80
80
|
The library also provides CLI `dev-project` which can be used to visualise the outputs of APIs as shown in the following section.
|
|
81
81
|
|
|
82
|
+
The library also provides the object CommandExecutor to help create customized CLI tools. On BAS, for example, use the basctl tool to call Project API which resides on an BAS extenison.
|
|
83
|
+
|
|
82
84
|
---
|
|
83
85
|
# APIs & Examples
|
|
84
86
|
|