* Check whether the project is a UI5-Framework project * * @public * @returns {boolean} True if the project is a framework project
()
| 61 | * @returns {boolean} True if the project is a framework project |
| 62 | */ |
| 63 | isFrameworkProject() { |
| 64 | const id = this.getId(); |
| 65 | return id.startsWith("@openui5/") || id.startsWith("@sapui5/"); |
| 66 | } |
| 67 | |
| 68 | /** |
| 69 | * Get the project's customConfiguration |
no test coverage detected