ish-ui 1.0.17 → 1.0.19
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 +6 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -18,10 +18,10 @@ git clone https://github.com/ishgroup/ish-ui.git
|
|
|
18
18
|
|
|
19
19
|
<br>
|
|
20
20
|
|
|
21
|
-
Install dependencies using
|
|
21
|
+
Install dependencies using NPM:
|
|
22
22
|
|
|
23
23
|
```bash
|
|
24
|
-
|
|
24
|
+
npm install
|
|
25
25
|
```
|
|
26
26
|
|
|
27
27
|
<br />
|
|
@@ -31,7 +31,7 @@ yarn install
|
|
|
31
31
|
To develop and run your web application, you need to run following command :
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
|
|
34
|
+
npm start
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
<br />
|
|
@@ -41,7 +41,7 @@ yarn start
|
|
|
41
41
|
To lint application source code using ESLint via this command :
|
|
42
42
|
|
|
43
43
|
```bash
|
|
44
|
-
|
|
44
|
+
npm lint
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
<br />
|
|
@@ -53,7 +53,7 @@ Distribution files output will be generated in `dist/` directory by default.
|
|
|
53
53
|
To build the production ready files for distribution, use the following command :
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
|
|
56
|
+
npm build
|
|
57
57
|
```
|
|
58
58
|
|
|
59
59
|
<br />
|
|
@@ -63,7 +63,7 @@ yarn build
|
|
|
63
63
|
Serve helps you serve a static site, single page application or just a static file. It also provides a neat interface for listing the directory's contents. This command serves build files from `dist/` directory.
|
|
64
64
|
|
|
65
65
|
```bash
|
|
66
|
-
|
|
66
|
+
npm serve
|
|
67
67
|
```
|
|
68
68
|
|
|
69
69
|
<br />
|