I have the following code in my gulpfile.js
gulp.src(['server.js']) .pipe(jscs({fix: true})) .pipe(gulp.dest('prod-app'));
But in prod-app / server.js there is the same file as server.js. Without any corrections. How to fix it?
javascript gulp jscs gulp-jscs
Gregory leleytner
source share