feature(config) rm option: cache

This commit is contained in:
coderaiser 2018-04-12 13:48:01 +03:00
parent 28892b3933
commit 58c10e201a
7 changed files with 2 additions and 23 deletions

View file

@ -36,7 +36,6 @@ const args = require('minimist')(argv.slice(2), {
],
boolean: [
'auth',
'cache',
'repl',
'save',
'server',
@ -61,7 +60,6 @@ const args = require('minimist')(argv.slice(2), {
server : true,
name : choose(env('name'), config('name')),
auth : choose(env('auth'), config('auth')),
cache : choose(env.bool('cache'), config('cache')),
port : config('port'),
online : config('online'),
open : config('open'),
@ -120,7 +118,6 @@ function main() {
config('name', args.name);
config('auth', args.auth);
config('cache', args.cache);
config('online', args.online);
config('open', args.open);
config('username', args.username);