Gulp任务输出丢失文件

时间:2016-11-13 14:13:26

标签: gulp gulp-watch gulp-sass gulp-concat

我无法通过gulp在根目录中创建output.css文件.. 我希望输出压缩的一个文件带有样式表,但gulp不起作用。

I have this structure

     - bower_components

         - bootstrap

           - sass

             - custom.scss

     - output.css

我的gulp文件:

var gulp             = require('gulp'),
    sass             = require('gulp-sass'),
    watch            = require('gulp-watch');
var concat           = require('gulp-concat');


gulp.task('scss', function () {
    return gulp.src('bower_components/bootstrap/scss/_custom.scss')
        .pipe(sass({outputStyle: 'compressed'}))
        .pipe(concat('output.css'))
        .pipe(gulp.dest('./'));
});

gulp.task('watch', function () {

    gulp.watch('bower_components/bootstrap/scss/_custom.scss', ['scss']);

});

gulp.task('default', ['watch']);

1 个答案:

答案 0 :(得分:0)

您忘记在默认任务中包含'scss'任务。

gulp.task('default', ['scss', 'watch']);