2016-11-13 14 views
0

gulp経由でルートディレクトリに出力ファイルを作成できません。出力ファイルを1つ圧縮してスタイルシートで圧縮したいのですが、gulpが機能しません。Gulpタスクの出力ファイルがありません

I have this structure 

    - bower_components 

     - bootstrap 

      - sass 

      - custom.scss 

    - output.css 

私の一気ファイル:

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']); 
+0

私はあなたのファイル構造がディレクトリ "SASS" を使用していますが、あなたのgulpfileは "SCSS" を使用しています参照してください。 – Mark

答えて

0

あなたのデフォルトのタスクに 'SCSS' タスクを含めるのを忘れていました。

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

関連する問題