Hello,
I created a home.sass file
@import molecules/mixins
@import ../bower_components/bootstrap-sass/assets/stylesheets/bootstrap /variables
@import ../bower_components/bootstrap-sass/assets/stylesheets/bootstrap /mixins
@import ../bower_components/breakpoint-sass/stylesheets/breakpoint'
These lines were to import these files into my css folder but when I give the gulp command, the files are not imported it reads my gulpfile and then nothing else appears in the terminal and I always have to terminate the command by giving ctrl + C
C:\Users\loja\Desktop\Alacarte>gulp
[15:41:46] Using gulpfile ~\Desktop\Alacarte\gulpfile.js
[15:41:46] Starting 'sass'...
[15:41:46] Starting 'watch'...
[15:41:47] Finished 'watch' after 210 ms
[15:41:48] Finished 'sass' after 1.92 s
[15:41:48] Starting 'default'...
[15:41:48] Finished 'default' after 22 μs
This is my gulpfile
'use strict';
var gulp = require('gulp');
var sass = require('gulp-sass');
var watch = require('gulp-watch');
gulp.task('default', ['sass', 'watch']);
var gulp = require('gulp');
var sass = require('gulp-sass');
gulp.task('sass', function () {
return gulp.src('sass/**/*.sass')
.pipe(sass({outputStyle: 'compressed'}))
.pipe(sass().on('error', sass.logError))
.pipe(gulp.dest('css'));
});
gulp.task('watch', function () {
gulp.watch('sass/**/*.sass', ['sass']);
});
Can you help me?