From a10683a405c2aff45a04811c9e49352e8300ad77 Mon Sep 17 00:00:00 2001 From: Clay Diffrient Date: Wed, 20 Apr 2016 20:45:14 -0600 Subject: [PATCH] [fixed] Make the non-minified dist build present again (#164) This commit removes the `-p` flag from the call to webpack so that the webpack config works as intended, creating two files in the dist directory, one minified and one unminified. After 3f323381b1e8c43fdbf172813b9e8a4ace9abe79 was merged the build ended up only producing the production minified versions for both files. This commit restores the initial behavior of a non-minified and a minified file. --- scripts/build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build b/scripts/build index 754e416e..96a89033 100755 --- a/scripts/build +++ b/scripts/build @@ -1,2 +1,2 @@ #!/bin/sh -webpack --config webpack.dist.config.js -p +webpack --config webpack.dist.config.js