Answer the question
In order to leave comments, you need to log in
Error in gulp, help?
After the second run of gulpa, these errors appeared in the project:
-icons' errored after 13 ms
-'default' errored after 190 ms
Here is the code itself:
const gulp = require('gulp');
const browserSync = require('browser-sync').create();
const sass = require('gulp-sass');
const cleanCSS = require('gulp-clean-css');
const autoprefixer = require('gulp-autoprefixer');
const rename = require("gulp-rename");
const imagemin = require('gulp-imagemin');
const htmlmin = require('gulp-htmlmin');
gulp.task('server', function() {
browserSync.init({
server: {
baseDir: "./dist/"
}
});
browserSync.watch("./dist/**/*.*").on('change', browserSync.reload);
});
gulp.task('styles', function() {
return gulp.src("src/sass/**/*.+(scss|sass)")
.pipe(sass({ outputStyle: 'compressed' }).on('error', sass.logError))
.pipe(rename({ suffix: '.min', prefix: '' }))
.pipe(autoprefixer())
.pipe(cleanCSS({ compatibility: 'ie8' }))
.pipe(gulp.dest("dist/css"));
});
gulp.task('html', function() {
return gulp.src("src/*.html")
.pipe(htmlmin({ collapseWhitespace: true }))
.pipe(gulp.dest('dist/'));
});
gulp.task('scripts', function() {
return gulp.src("src/js/**/*.js")
.pipe(gulp.dest('dist/js'));
});
gulp.task('icons', function() {
return gulp.src("src/icons/**/*")
.pipe(gulp.dest('dist/icons'));
});
gulp.task('images', function() {
return gulp.src("src/img/**/*")
.pipe(imagemin())
.pipe(gulp.dest('dist/img'));
});
gulp.task('watch', function() {
gulp.watch("src/sass/**/*.+(scss|sass|css)", gulp.series('styles'));
gulp.watch("src/*.html", gulp.series('html'));
});
gulp.task('default', gulp.series('styles', 'scripts', 'icons', 'html', 'images', gulp.parallel('watch', 'server')));
Answer the question
In order to leave comments, you need to log in
And what are the mistakes? Most likely, something was screwed up with the directories, or there is no access (perhaps the directory is open in your explorer or, if Linux, check chmod).
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question