Skip to content

Commit

Permalink
fix --no-cache flag (#219)
Browse files Browse the repository at this point in the history
  • Loading branch information
guybedford authored and rauchg committed Jan 15, 2019
1 parent 6050628 commit 2140d04
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ switch (args._[0]) {
minify: args["--minify"],
externals: args["--external"],
sourceMap: args["--source-map"] || run && args["--minify"],
cacheDirectory: args["--no-cache"] ? false : undefined,
cache: args["--no-cache"] ? false : undefined,
watch: args["--watch"]
}
);
Expand Down

0 comments on commit 2140d04

Please sign in to comment.