gulp sass watch task @import issue

时间:2015-09-21 08:18:31

标签: gulp gulp-watch gulp-sass

我想尝试与sass一起喝酒并遇到问题。 我有以下sass目录:

main.scss //all custom styling
mixins.scss //custom mixins
variables.scss //custom variables
style.scss //file that imports all the above with bootstrap and fontawesome

当我运行gulp时,一切都编译并且没有错误,我得到了包含所有样式的正确的sytle.min.css。 但后来我更改了其中一个观察文件(main.scss || mixins.scss || variables.scss)我得到以下错误之一:“undefined variable”,“no mixin named ...”。

此外,如果我更改并保存main.scss,我没有错误,但没有任何自定义scss文件包含在css中,只有fontawesome的bootstrap被编译。

我的设置有什么问题?

gulpfile.js

var gulp = require('gulp'),
    sass = require('gulp-sass'),
    notify = require("gulp-notify"),
    concat = require('gulp-concat'),
    minifycss = require('gulp-minify-css'),
    uglify = require('gulp-uglify'),
    rename = require('gulp-rename')
    bower = require('gulp-bower')
    merge = require('merge-stream')
    watch = require('gulp-watch');

var config = {
    destPath: './dist',
    sassPath: './src/sass',
    jsPath: './src/js',
    bowerDir: './src/components'
}

gulp.task('bower', function() {
    return bower()
    .pipe(gulp.dest(config.bowerDir));
});

gulp.task('icons', function() {
    var fontawesome = gulp.src(config.bowerDir + '/font-awesome/fonts/**.*')
    .pipe(gulp.dest('./src/fonts'));

    var bootstrap = gulp.src(config.bowerDir + '/bootstrap-sass/assets/fonts/bootstrap/**.*')
    .pipe(gulp.dest('./src/fonts/bootstrap'));

    return merge(fontawesome, bootstrap);
});


gulp.task('sass', function() {
    console.log(config.sassPath);
    var stream = gulp.src([config.sassPath + '/style.scss'])
        .pipe(sass().on('error', sass.logError))
        // .pipe(concat('style.css'))
        .pipe(minifycss())
        .pipe(rename('style.min.css'))
        .pipe(gulp.dest(config.destPath));
    return stream;
});

gulp.task('js', function() {
    var stream = gulp.src([config.bowerDir + '/jquery/dist/jquery.js', config.bowerDir + '/bootstrap-sass/assets/javascripts/bootstrap.js', config.jsPath + '/*.js'])
        .pipe(concat('script.js'))
        .pipe(uglify())
        .pipe(rename('script.min.js'))
        .pipe(gulp.dest(config.destPath)); 
    return stream;
});

gulp.task('watch', function(){
    watch([config.sassPath + '/*.scss'], function(event, cb) {
        gulp.start('sass');
    });
    watch([config.jsPath + '/*.js'], function(event, cb) {
        gulp.start('js');
    });
});

gulp.task('default', ['bower', 'icons', 'js','sass', 'watch']);

style.scss

@import "./variables.scss";
@import "./mixins.scss";
@import "../components/bootstrap-sass/assets/stylesheets/bootstrap.scss";
@import "../components/font-awesome/scss/font-awesome.scss";
@import "./main.scss";

1 个答案:

答案 0 :(得分:2)

好的,所以我在调用 sass 任务之前通过将超时添加到 watch 任务来修复它:

watch([config.sassPath + '/*.scss'], function(event, cb) {
    setTimeout(function(){
        gulp.start('sass');
    }, 1000);
});

它是关于保存延迟或服务器ping问题的IDE(sublime 2)。