@jitera/jitera-web-ui-library 1.45.0 → 1.46.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -11
- package/package.json +1 -1
package/README.md
CHANGED
@@ -1,23 +1,24 @@
|
|
1
1
|
# Getting Started with Jitera Web UI Library
|
2
2
|
|
3
|
-
React
|
3
|
+
A public React library providing UI components and making it simple for you to build web application
|
4
4
|
|
5
|
-
##
|
5
|
+
## Developments
|
6
6
|
|
7
7
|
In the project directory, you can run:
|
8
8
|
|
9
|
-
### `yarn storybook`
|
10
|
-
|
11
9
|
Runs the storybook in the development mode.\
|
12
10
|
Open [http://localhost:6006](http://localhost:6006) to view it in the browser.
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
### `yarn lint` or `yarn format`
|
11
|
+
```
|
12
|
+
yarn storybook
|
13
|
+
```
|
18
14
|
|
19
15
|
Format Code
|
20
|
-
|
21
|
-
|
16
|
+
```
|
17
|
+
yarn lint
|
18
|
+
yarn format
|
19
|
+
```
|
22
20
|
|
23
21
|
Builds the app for publishing as NPM Package to the `dist` folder.
|
22
|
+
```
|
23
|
+
yarn build
|
24
|
+
```
|