From 7d85101f3599b60dc7e4be99ff6efe2571316d5c Mon Sep 17 00:00:00 2001 From: Peter Muessig Date: Thu, 13 Aug 2026 09:57:44 +0300 Subject: [PATCH] fix(quickstart): correct grammar in step 1 (review feedback) Address KlattG's review comments on #328: - "To use install the required OpenUI5 libraries" -> "To install the required OpenUI5 libraries" (stray "use"). - "so we can use them in our project" -> "so we can use it in our project" (singular: the tooling extension). --- packages/quickstart/steps/01/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/quickstart/steps/01/README.md b/packages/quickstart/steps/01/README.md index 6bcfcb89a..fa4da3921 100644 --- a/packages/quickstart/steps/01/README.md +++ b/packages/quickstart/steps/01/README.md @@ -232,7 +232,7 @@ To use OpenUI5, execute the following command: ui5 use OpenUI5 ``` -To use install the required OpenUI5 libraries, execute the following command: +To install the required OpenUI5 libraries, execute the following command: ```sh ui5 add sap.m sap.tnt sap.ui.core sap.ui.layout themelib_sap_horizon @@ -272,7 +272,7 @@ Let's break down what each package does: #### ui5.yaml -Next, we have to configure the tooling extension we installed from npm to our UI5 CLI setup, so we can use them in our project. To hook a custom task into a certain build phase of a project, it needs to reference another task that will get executed before or after it. The same applies for a custom middleware: +Next, we have to configure the tooling extension we installed from npm to our UI5 CLI setup, so we can use it in our project. To hook a custom task into a certain build phase of a project, it needs to reference another task that will get executed before or after it. The same applies for a custom middleware:
- For the `ui5-tooling-transpile-task` we specify that this should happen after the`replaceVersion` task.