Currently, I am facing issues while trying to compile a less file into css using Gulp. The error message that keeps popping up says: Process terminated with code 1.
. Does anyone have an understanding of what this error means and why it is happening? Furthermore, any suggestions on how to resolve this issue?
Here is the content of my gulpfile.js:
var gulp = require('gulp');
var less = require('gulp-less');
gulp.task('compile less simple', function () {
gulp.src('box-sizing.less')
.pipe(less())
.pipe(gulp.dest('output.min.css'));
});