diff --git a/source/_posts/2017-01-07-easier-sculpin-commands-with-composer-and-npm-scripts.md b/source/_posts/2017-01-07-easier-sculpin-commands-with-composer-and-npm-scripts.md index 8242cb39..8367ece4 100644 --- a/source/_posts/2017-01-07-easier-sculpin-commands-with-composer-and-npm-scripts.md +++ b/source/_posts/2017-01-07-easier-sculpin-commands-with-composer-and-npm-scripts.md @@ -12,7 +12,7 @@ My website includes several various command line tools - e.g. [Sculpin][4], [Gul In this video, I show you how I've simplied my Sculpin and Gulp workflow using custom Composer and NPM scripts.
- +
## Scripts @@ -25,7 +25,7 @@ Here are the scripts that I’m using - they are slightly different from those i "scripts": { "clean": "rm -rf output_*/", "dev": "sculpin generate --clean --no-interaction --server --watch", - "production": "sculpin generate --clean --no-interaction --env='prod'" + "production": "sculpin generate --clean --no-interaction --env='prod' --quiet" } ```