We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 714b1cb commit 8e8e990Copy full SHA for 8e8e990
index.js
@@ -150,7 +150,8 @@ function cli(process, beforeMinifyCallback) {
150
var inputPaths = expandedGlobs.map(function (path) { return path.expanded; });
151
152
minify(process, options, configurations, expandedGlobs);
153
- require('chokidar').watch(inputPaths).on('change', function () {
+ require('chokidar').watch(inputPaths).on('change', function (pathToChangedFile) {
154
+ console.log(`File '${pathToChangedFile}' has changed. Rerunning all optimizations...`)
155
156
});
157
} else {
0 commit comments