Skip to content

Commit 79f49dd

Browse files
Fixes linter errors.
1 parent 091f281 commit 79f49dd

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.jshintrc

+1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
"camelcase": true,
33
"curly": false,
44
"eqeqeq": false,
5+
"esversion": 6,
56
"immed": true,
67
"indent": 2,
78
"noarg": true,

index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ function cli(process, beforeMinifyCallback) {
151151

152152
minify(process, options, configurations, expandedGlobs);
153153
require('chokidar').watch(inputPaths).on('change', function (pathToChangedFile) {
154-
console.log(`File '${pathToChangedFile}' has changed. Rerunning all optimizations...`)
154+
console.log(`File '${pathToChangedFile}' has changed. Rerunning all optimizations...`);
155155
minify(process, options, configurations, expandedGlobs);
156156
});
157157
} else {

0 commit comments

Comments
 (0)