Using gulp watch
, I get error for sass compiler module as following:
[01:41:22] Using gulpfile D:\Workspace\WebDev\agaweed\public_html\wp-content\themes\master\gulpfile.js
[01:41:22] Starting 'watch'...
[01:41:23] Finished 'watch' after 26 ms
[01:41:35] Starting 'styles'...
[01:41:35] 'sass' is not recognized as an internal or external command,
operable program or batch file.
events.js:160
throw er; // Unhandled 'error' event
^
Error: Gem undefined is not installed.
I did loaded gulp-ruby-sass in gulpfile.js
and added watch
task as:
// Load plugins
var gulp = require('gulp'),
sass = require('gulp-ruby-sass'),
autoprefixer = require('gulp-autoprefixer'),
cssnano = require('gulp-cssnano'),
jshint = require('gulp-jshint'),
uglify = require('gulp-uglify'),
imagemin = require('gulp-imagemin'),
rename = require('gulp-rename'),
concat = require('gulp-concat'),
notify = require('gulp-notify'),
cache = require('gulp-cache'),
livereload = require('gulp-livereload'),
del = require('del');
...
// Watch
gulp.task('watch', function() {
// Watch .scss files
gulp.watch('src/styles/**/*.scss', ['styles']);
// Watch .js files
gulp.watch('src/scripts/**/*.js', ['scripts']);
// Watch image files
gulp.watch('src/images/**/*', ['images']);
// Create LiveReload server
livereload.listen();
// Watch any files in dist/, reload on change
gulp.watch(['dist/**']).on('change', livereload.changed);
});
Any help with issue is much appreciated :)
Do you have something like 'gulp-sass' installed, also inside your gulpfile you need initialize it.
Then put in your task