Commit 61243b6
committed
chore: use concurrently for the build process
concurrently allows running independent tasks in parallel in different
node.js processes. This can reduce execution time drastically. In my
machine it reduces the `npm run check` command execution time to
a half.
```
Without concurrently:
real 0m20.025s
user 0m41.886s
sys 0m1.882s
With concurrently:
real 0m9.910s
user 0m59.061s
sys 0m2.201s
```1 parent d189734 commit 61243b6
2 files changed
+4
-4
lines changedSome generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
37 | 37 | | |
38 | 38 | | |
39 | 39 | | |
40 | | - | |
| 40 | + | |
41 | 41 | | |
42 | 42 | | |
43 | | - | |
44 | | - | |
| 43 | + | |
45 | 44 | | |
46 | 45 | | |
47 | | - | |
| 46 | + | |
48 | 47 | | |
49 | 48 | | |
50 | 49 | | |
| |||
0 commit comments