diff --git a/lib/Server.js b/lib/Server.js index 727fcbb..e251f66 100644 --- a/lib/Server.js +++ b/lib/Server.js @@ -280,9 +280,7 @@ class Server { ).concat( this.assetRoots ? ['--assetRoots', this.assetRoots.join(',')] : [] ).concat( - this.resetCache - ? '--reset-cache' - : [] + this.resetCache ? '--reset-cache' : [] ); const opts = {stdio: 'inherit'}; this.packageServer = spawn(cmd, args, opts);