running npm install will cause errors because it tries to install gulp-sass 4.1.0 which uses node-sass which is deprecated.
This can easily fixed by changing "gulp-sass": "^4.1.0", to "gulp-sass": "^5.1.0", in the package.lock
you might have to change const sass = require('gulp-sass') to const sass = require('gulp-sass')(require('sass')); as well.
But after I have done that it worked fine.
I could make these changes in the source and do a PR if I'm assigned :)
running
npm installwill cause errors because it tries to installgulp-sass4.1.0 which usesnode-sasswhich is deprecated.This can easily fixed by changing
"gulp-sass": "^4.1.0",to"gulp-sass": "^5.1.0",in thepackage.lockyou might have to change
const sass = require('gulp-sass')toconst sass = require('gulp-sass')(require('sass'));as well.But after I have done that it worked fine.
I could make these changes in the source and do a PR if I'm assigned :)