Skip to content

Commit

Permalink
add cache-dir option to cli (#1321)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jasper De Moor authored and devongovett committed Jun 24, 2018
1 parent 7f4049d commit 12ddda7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/cli.js
Expand Up @@ -57,6 +57,7 @@ program
'set the log level, either "0" (no output), "1" (errors), "2" (warnings + errors) or "3" (all).',
/^([0-3])$/
)
.option('--cache-dir <path>', 'set the cache directory. defaults to ".cache"')
.action(bundle);

program
Expand Down Expand Up @@ -101,6 +102,7 @@ program
'set the log level, either "0" (no output), "1" (errors), "2" (warnings + errors) or "3" (all).',
/^([0-3])$/
)
.option('--cache-dir <path>', 'set the cache directory. defaults to ".cache"')
.action(bundle);

program
Expand Down Expand Up @@ -140,6 +142,7 @@ program
'set the log level, either "0" (no output), "1" (errors), "2" (warnings + errors) or "3" (all).',
/^([0-3])$/
)
.option('--cache-dir <path>', 'set the cache directory. defaults to ".cache"')
.action(bundle);

program
Expand Down

0 comments on commit 12ddda7

Please sign in to comment.