File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -179,6 +179,13 @@ git clone {url-project} &&
179
179
The example above clones the UI project and then switches to the project folder on your filesystem.
180
180
Stay in this project folder when executing all subsequent commands.
181
181
182
+ If you are testing UI bundle changes from a PR that is not yet merged to `main`, checkout the branch. Example:
183
+
184
+ [source,shell]
185
+ ----
186
+ git checkout feature/new-helios-base
187
+ ----
188
+
182
189
Use npm to install the project's dependencies inside the project.
183
190
In your terminal, execute the following command:
184
191
@@ -207,7 +214,21 @@ The files in the [.path]_preview-src/_ folder provide the sample content that al
207
214
In this folder, you'll primarily find pages written in AsciiDoc.
208
215
These pages provide a representative sample and kitchen sink of content from the real site.
209
216
210
- To build the UI and preview it in a local web server, run the `preview` command:
217
+ If you are testing UI bundle changes from a PR that is not yet merged to `main`, and if you haven't already, remember to checkout the branch. Example:
218
+
219
+ [source,shell]
220
+ ----
221
+ git checkout feature/new-helios-base
222
+ ----
223
+
224
+ Run the `npm install` command again.
225
+
226
+ [source,shell]
227
+ ----
228
+ npm install
229
+ ----
230
+
231
+ Now, to build the UI and preview it in a local web server, run the `preview` command:
211
232
212
233
[source,shell]
213
234
----
You can’t perform that action at this time.
0 commit comments