13
13
A CLI tool to run multiple npm-scripts in parallel or sequential.
14
14
15
15
```
16
- > npm-run-all clean lint build:*
16
+ $ npm-run-all clean lint build:*
17
17
```
18
18
19
19
```
20
- > npm-run-all clean --parallel "build:* -- --watch"
20
+ $ npm-run-all --parallel watch:*
21
21
```
22
22
23
23
## Installation
@@ -31,7 +31,7 @@ npm install npm-run-all
31
31
32
32
## CLI Commands
33
33
34
- This ` npm-run-all ` package introduces 3 CLI commands.
34
+ This ` npm-run-all ` package provides 3 CLI commands.
35
35
36
36
- [ npm-run-all]
37
37
- [ run-s]
@@ -40,7 +40,7 @@ This `npm-run-all` package introduces 3 CLI commands.
40
40
The main command is [ npm-run-all] .
41
41
We can make complex plans with [ npm-run-all] command.
42
42
43
- Both [ run-s] and [ run-p] are the shorthand commands.
43
+ Both [ run-s] and [ run-p] are shorthand commands.
44
44
[ run-s] is for sequential, [ run-p] is for parallel.
45
45
We can make simple plans with those commands.
46
46
@@ -50,6 +50,36 @@ This `npm-run-all` package provides Node API.
50
50
51
51
- [ Node API]
52
52
53
+ ## Changelog
54
+
55
+ - https://github.com/mysticatea/npm-run-all/releases
56
+
57
+ ## Contributing
58
+
59
+ Thank you for contributing!
60
+
61
+ ### Bug Reports or Feature Requests
62
+
63
+ Please use GitHub Issues.
64
+
65
+ ### Correct Documents
66
+
67
+ Please use GitHub Pull Requests.
68
+
69
+ I'm not familiar with English, so I especially thank you for documents' corrections.
70
+
71
+ ### Feature Implementing
72
+
73
+ Please use GitHub Pull Requests.
74
+
75
+ There are some npm-scripts to help developments.
76
+ Those work on Windows, Mac, or Linux (by the way, I'm developping ` npm-run-all ` on Windows).
77
+
78
+ - ** npm test** - Run tests and collect coverage.
79
+ - ** npm run build** - Make ` lib ` directory from ` src ` directory.
80
+ - ** npm run clean** - Delete directories (folders) which are created by other commands.
81
+ - ** npm run lint** - Run ESLint.
82
+ - ** npm run watch** - Run tests (not collect coverage) when each file was modified.
53
83
54
84
[ npm-run-all ] : docs/npm-run-all.md
55
85
[ run-s ] : docs/run-s.md
0 commit comments