You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 :)
The text was updated successfully, but these errors were encountered:
running
npm install
will cause errors because it tries to installgulp-sass
4.1.0 which usesnode-sass
which is deprecated.This can easily fixed by changing
"gulp-sass": "^4.1.0",
to"gulp-sass": "^5.1.0",
in thepackage.lock
you 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 :)
The text was updated successfully, but these errors were encountered: