Unable to run gulp task -


i'm trying run simple gulp-sass task, i'm getting error:

[22:42:14] starting 'sass'... [22:42:14] finished 'sass' after 10 ms   events.js:72     throw er; // unhandled 'error' event           ^    error: file not found singular glob @ glob.<anonymous> (d:\development\webstorm\calliope\node_modules\gulp\node_modules\vinyl-fs\node_modules\glob-stream\index.js:34:30) @ glob.eventemitter.emit (events.js:95:17) @ glob._finish (d:\development\webstorm\calliope\node_modules\gulp\node_modules\vinyl-fs\node_modules\glob-stream\node_modules\glob\glob.js:171:8) @ done (d:\development\webstorm\calliope\node_modules\gulp\node_modules\vinyl-fs\node_modules\glob-stream\node_modules\glob\glob.js:158:12) @ glob._processsimple2 (d:\development\webstorm\calliope\node_modules\gulp\node_modules\vinyl-fs\node_modules\glob-stream\node_modules\glob\glob.js:640:12) @ d:\development\webstorm\calliope\node_modules\gulp\node_modules\vinyl-fs\node_modules\glob-stream\node_modules\glob\glob.js:628:10 @ glob._stat2 (d:\development\webstorm\calliope\node_modules\gulp\node_modules\vinyl-fs\node_modules\glob-stream\node_modules\glob\glob.js:724:12) @ lstatcb_ (d:\development\webstorm\calliope\node_modules\gulp\node_modules\vinyl-fs\node_modules\glob-stream\node_modules\glob\glob.js:716:12) @ res (d:\development\webstorm\calliope\node_modules\gulp\node_modules\vinyl-fs\node_modules\glob-stream\node_modules\glob\node_modules\inflight\inflight.js:23:14) @ f (d:\development\webstorm\calliope\node_modules\gulp\node_modules\vinyl-fs\node_modules\glob-stream\node_modules\glob\node_modules\once\once.js:17:25) 

i installed gulp both globally , locally dev depency. here's task:

var gulp = require("gulp"), sass = require("gulp-sass");  gulp.task("sass", function(){     gulp.src('assets/sass/*.scss')         .pipe(sass())         .pipe(gulp.dest('assets/css')) }); 

the error not clear, way exception throwed wrong link ( resource not found )


Comments

Popular posts from this blog

java - Spring Data JPA: Why findOne(id) executing delete query internally? -

python - Mongodb How to add addtional information when aggregating? -

java - Incorrect order of records in M-M relationship in hibernate -