@@ -153,13 +153,26 @@ UI5 Web Components support different calendar types (Gregorian, Islamic, Japanes
153
153
- [ Yarn] ( https://yarnpkg.com/en )
154
154
- [ Node.js] ( https://nodejs.org/ ) (** version 8.5 or higher** )
155
155
156
- You can clone the UI5 Web Components repository and start the Playground app with the following commands:
156
+ You can explore components test pages on http://localhost:8080/test-resources/pages/ for the ` main ` package
157
+ and http://localhost:8081/test-resources/pages/ for the ` fiori ` package.
157
158
158
159
``` sh
159
160
yarn # to install all dependencies
160
161
yarn start # to serve the project
161
162
```
162
- This will open the Playground page in the browser!
163
+
164
+ You can start the Playground app with the following commands:
165
+
166
+ ``` sh
167
+ # install palyground specific dependencies (one time only)
168
+ cd packages/playground
169
+ yarn install:dependencies
170
+
171
+ # start the playground from the project root
172
+ yarn start:playground
173
+
174
+ # open http://localhost:4000/
175
+ ```
163
176
164
177
## Production Build
165
178
To build the UI5 Web Components, just run the following commands:
@@ -169,7 +182,8 @@ yarn # to install all dependecies
169
182
yarn build # to build the project
170
183
```
171
184
172
- Afterwards, you can find the static ** UI5 Web Components - Playground** in the ` dist ` folder of the playground.
185
+ Afterwards, you can find the static ** UI5 Web Components** in the ` dist ` folder of the corresponding package folder.
186
+ For example, to find the Button component (that belongs to the ` main ` package), look inside the ` packages/main/dist ` folder.
173
187
174
188
## FAQ
175
189
### What's the thing with Yarn?
0 commit comments