|
1 | 1 | #!/bin/bash
|
2 | 2 |
|
3 |
| -function desc() { |
4 |
| - echo "\033[01;38;5;022m############### $1 ###############\033[0m" |
| 3 | +make_title() { |
| 4 | + printf '\033[01;38;5;022m############### %s ###############\033[0m\n' "$1" |
5 | 5 | }
|
6 | 6 |
|
7 |
| -desc "LIST" |
| 7 | +make_title "LIST" |
8 | 8 | ./bin/cli.js lib/api.js
|
9 | 9 |
|
10 |
| -desc "SUMMARY" |
| 10 | +make_title "SUMMARY" |
11 | 11 | ./bin/cli.js lib/api.js -s
|
12 | 12 |
|
13 |
| -desc "DEPENDS" |
| 13 | +make_title "DEPENDS" |
14 | 14 | ./bin/cli.js lib/api.js -d log.js
|
15 | 15 |
|
16 |
| -desc "CIRCULAR (OK)" |
| 16 | +make_title "CIRCULAR (OK)" |
17 | 17 | ./bin/cli.js test/cjs/a.js -c
|
18 | 18 |
|
19 |
| -desc "CIRCULAR (FOUND, NO INDEX COUNTING)" |
| 19 | +make_title "CIRCULAR (FOUND, NO INDEX COUNTING)" |
20 | 20 | ./bin/cli.js test/cjs/circular/a.js -c --no-count
|
21 | 21 |
|
22 |
| -desc "CIRCULAR (FOUND, WITH INDEX COUNT)" |
| 22 | +make_title "CIRCULAR (FOUND, WITH INDEX COUNT)" |
23 | 23 | ./bin/cli.js test/cjs/circular/a.js -c
|
24 | 24 |
|
25 |
| -desc "NPM" |
| 25 | +make_title "NPM" |
26 | 26 | ./bin/cli.js test/cjs/npm.js --include-npm
|
27 | 27 |
|
28 |
| -desc "STDIN" |
| 28 | +make_title "STDIN" |
29 | 29 | ./bin/cli.js --json lib/api.js | tr '[a-z]' '[A-Z]' | ./bin/cli.js --stdin
|
30 | 30 |
|
31 |
| -desc "IMAGE" |
| 31 | +make_title "IMAGE" |
32 | 32 | ./bin/cli.js lib/api.js --image /tmp/test.svg
|
33 | 33 |
|
34 |
| -desc "DOT" |
| 34 | +make_title "DOT" |
35 | 35 | ./bin/cli.js lib/api.js --dot
|
36 | 36 |
|
37 |
| -desc "JSON" |
| 37 | +make_title "JSON" |
38 | 38 | ./bin/cli.js lib/api.js --json
|
39 | 39 |
|
40 |
| -desc "NO COLOR" |
| 40 | +make_title "NO COLOR" |
41 | 41 | ./bin/cli.js lib/api.js --no-color
|
42 | 42 |
|
43 |
| -desc "SHOW EXTENSION" |
| 43 | +make_title "SHOW EXTENSION" |
44 | 44 | ./bin/cli.js lib/api.js --show-extension
|
45 | 45 |
|
46 |
| -desc "WARNINGS (NOTE)" |
| 46 | +make_title "WARNINGS (NOTE)" |
47 | 47 | ./bin/cli.js test/cjs/missing.js -c
|
48 | 48 |
|
49 |
| -desc "WARNINGS (LIST)" |
| 49 | +make_title "WARNINGS (LIST)" |
50 | 50 | ./bin/cli.js test/cjs/missing.js -c --warning
|
51 | 51 |
|
52 |
| -desc "ERROR" |
| 52 | +make_title "ERROR" |
53 | 53 | ./bin/cli.js file/not/found.js
|
54 | 54 |
|
55 |
| -desc "DEBUG" |
| 55 | +make_title "DEBUG" |
56 | 56 | ./bin/cli.js lib/log.js --debug
|
57 | 57 |
|
58 | 58 | exit 0
|
0 commit comments