Skip to content

Commit

Permalink
Improved advise on repacing node-sass with sass (#2758)
Browse files Browse the repository at this point in the history
* Improved advise on repacing node-sass with sass

* Update README.md
  • Loading branch information
cclauss committed Mar 13, 2023
1 parent fc0ddc6 commit 41882a9
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion docs/README.md
Expand Up @@ -4,7 +4,14 @@ Please look thru your error log for the string `gyp info using node-gyp@` and if

## `node-sass` is deprecated

Please be aware that the package [`node-sass` is deprecated](https://github.com/sass/node-sass#node-sass) so you should actively seek alternatives. Please avoid opening new `node-sass` issues on this repo. You can try `npm install --global node-sass@latest` but we [cannot help much](https://github.com/nodejs/node-gyp/issues?q=is%3Aissue+label%3A%22Node+Sass+--%3E+Dart+Sass%22+) here.
Please be aware that the package [`node-sass` is deprecated](https://github.com/sass/node-sass#node-sass) so you should actively seek alternatives. You can try:
```
npm uninstall node-sass
npm install sass --save
# or ...
npm install --global node-sass@latest
```
But in any case, please avoid opening new `node-sass` issues on this repo because we [cannot help much](https://github.com/nodejs/node-gyp/issues?q=is%3Aissue+label%3A%22Node+Sass+--%3E+Dart+Sass%22+).

## Issues finding the installed Visual Studio

Expand Down

0 comments on commit 41882a9

Please sign in to comment.