My WebStorm has stopped working with gulp files.
It worked fine until last Friday.
This message appears in the console:
Failed to display gulp tasks in questionary / gulpfile.js: could not parse JSON β Unterminated array in row 1 column 5 path $ [1] * Edit Parameters
$ / usr / local / bin / node / Users / rkon2006 / Projects / My / questionary / node_modules / gulp / bin / gulp.js --no-color --gulpfile / Users / rkon2006 / Projects / My / questionary / gulpfile. js --tasks-json [17:26:14] Using gulpfile ~ / Projects / My / questionary / gulpfile.js [17:26:14] Running 'default' ... Default task ...
This is the code from my gulpfile.js (it does not even run with this code):
var gulp = require('gulp');
gulp.task('default', function () {
console.log('Default task...');
});
Run codeHide resultProcess terminated by exit code 0
gulp v4.0, node js 4.1.1 ( 0.10.28 4.1.1) npm 2.14.4.
- ?