Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gulp-sass version requirement should be updated #696

Open
jihyundotkim opened this issue Aug 7, 2023 · 1 comment
Open

gulp-sass version requirement should be updated #696

jihyundotkim opened this issue Aug 7, 2023 · 1 comment

Comments

@jihyundotkim
Copy link

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 :)

@niutech
Copy link

niutech commented Apr 11, 2024

Check out my updated fork for this change.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants