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
5 changes: 2 additions & 3 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ jobs:
- name: Perform ESLint check
run: npm run lint

# TODO: Enable when "cli" package has been integrated into monorepo
# - name: Perform Licenses check
# run: npm run check-licenses
- name: Perform Licenses check
run: npm run check-licenses

- name: Perform dependency check
run: npm run depcheck
Expand Down
3 changes: 2 additions & 1 deletion packages/cli/.licensee.json → .licensee.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
},
"packages": {
"callsite": "1.0.0",
"yesno": "0.4.0"
"yesno": "0.4.0",
"only": "0.0.2"
},
"corrections": true
}
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ UI5 CLI consists of multiple packages managed within this monorepo:
- **packages/logger**: Internal logging module

**Usage Overview** *(arrows indicate dependencies)*
![Module Overview](./docs/images/Module_overview.png)
![Module Overview](./packages/documentation/docs/images/Module_overview.png)

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"npm": ">= 8"
},
"scripts": {
"test": "npm run lint && npm run depcheck && npm run coverage && npm run jsdoc-generate && npm run schema-generate && npm run generate-cli-doc",
"test": "npm run lint && npm run check-licenses && npm run depcheck && npm run coverage && npm run jsdoc-generate && npm run schema-generate && npm run generate-cli-doc",
"lint": "eslint ./ && npm run lint --workspaces",
"coverage": "npm run coverage --workspaces",
"jsdoc": "npm run jsdoc-generate && open-cli site/api/index.html",
Expand All @@ -35,7 +35,8 @@
"schema-generate": "node ./scripts/buildSchema.js ui5",
"schema-workspace-generate": "node ./scripts/buildSchema.js ui5-workspace",
"generate-cli-doc": "node ./scripts/generateCliDoc.js",
"depcheck": "depcheck --ignores @ui5/builder,@ui5/cli,@ui5/fs,@ui5/logger,@ui5/project,@ui5/server,docdash,local-web-server && npm run depcheck --workspaces"
"depcheck": "depcheck --ignores @ui5/builder,@ui5/cli,@ui5/fs,@ui5/logger,@ui5/project,@ui5/server,docdash,local-web-server && npm run depcheck --workspaces",
"check-licenses": "licensee --errors-only"
},
"repository": {
"type": "git",
Expand All @@ -57,16 +58,17 @@
"globals": "^16.4.0",
"handlebars": "^4.7.8",
"jsdoc": "^4.0.4",
"licensee": "^11.1.1",
"local-web-server": "^5.4.0",
"open-cli": "^8.0.0",
"traverse": "^0.6.11"
},
"workspaces": [
"packages/logger",
"packages/builder",
"packages/cli",
"packages/fs",
"packages/server",
"packages/logger",
"packages/project",
"packages/cli"
"packages/server"
]
}
1 change: 0 additions & 1 deletion packages/cli/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,3 @@ Please report issues in the main [UI5 CLI](https://github.com/UI5/cli) repositor
## Release History

See [CHANGELOG.md](CHANGELOG.md).
A consolidated changelog (including changes from the other UI5 CLI modules) is available on the [Releases tab](https://github.com/SAP/ui5-cli/releases).
Loading