Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion jsdoc.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"allowUnknownTags": false
},
"source": {
"include": ["docs/indexJsdoc.md"],
"include": ["packages/documentation/docs/indexJsdoc.md"],
"exclude": [
"node_modules/@ui5/builder/lib/lbt/utils/JSTokenizer.js",
"node_modules/@ui5/builder/lib/processors/jsdoc/lib/ui5/plugin.js",
Expand Down
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
393 changes: 393 additions & 0 deletions packages/documentation/docs/pages/CLI.md

Large diffs are not rendered by default.

File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ If this callback is not provided, UI5 CLI will make an assumption as to whether
* **Specification Versions before 3.0:** If no callback is provided, UI5 CLI assumes that all dependencies are required.


*For more details, see also [RFC 0012 UI5 CLI Extension API v3](https://github.com/UI5/cli/blob/v3/rfcs/0012-UI5-Tooling-Extension-API-3.md#3-tasks-requiring-dependencies)*
*For more details, see also [RFC 0012 UI5 CLI Extension API v3](https://github.com/UI5/cli/blob/main/rfcs/0012-UI5-Tooling-Extension-API-3.md)*

=== "ESM"

Expand Down
17 changes: 17 additions & 0 deletions packages/documentation/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 24 additions & 0 deletions packages/documentation/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "@ui5/documentation",
"private": true,
"version": "0.0.1",
"description": "UI5 CLI Documentation",
"author": {
"name": "SAP SE",
"email": "[email protected]",
"url": "https://www.sap.com"
},
"license": "Apache-2.0",
"keywords": [
"openui5",
"sapui5",
"ui5",
"documentation",
"vitepress"
],
"type": "module",
"engines": {
"node": "^20.11.0 || >=22.0.0",
"npm": ">= 8"
}
}
2 changes: 1 addition & 1 deletion scripts/generateCliDoc.js
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ function generateDoc() {
content = content.split("&lt;").join("<").split("&gt;").join(">");
content = content.split("&#x3D;").join("=");
try {
writeFileSync("./docs/pages/CLI.md", content);
writeFileSync("./packages/documentation/docs/pages/CLI.md", content);
} catch (err) {
console.error(`Failed to generate docs/pages/CLI.md: ${err.message}.`);
throw err;
Expand Down