Recently I started learning preprocessors. Faced the problem: When compiling from .jade to .html code is minified. That for training is not very good. How to disable minification? Desirable explanation on the fingers.
PS: I am writing code on PHPStorm, I use the built-in Watcher.

    1 answer 1

     gulp.task('jade', function () { return gulp.src('public/**/*.jade') .pipe(gulpJade({ jade: jade, pretty: true })) .pipe(gulp.dest('public/')) }) 
    • 2
      To complete the picture, select the specific part that causes the desired effect. And, ideally, attach a link to the documentation that describes the options (including this one). - D-side