Skip to content

Commit

Permalink
fix: prioritize sass over node-sass
Browse files Browse the repository at this point in the history
BREAKING: `sass` is now the default Sass implementation due to `node-sass` deprecation
  • Loading branch information
Anidetrix committed Jan 16, 2022
1 parent 547c743 commit e9a93ef
Show file tree
Hide file tree
Showing 5 changed files with 521 additions and 514 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -185,24 +185,24 @@ styles({

Install corresponding dependency:

- For `Sass` support install `node-sass` or `sass`:
- For `Sass` support install `sass` or `node-sass`:

```bash
# npm
npm install -D node-sass
npm install -D sass
# pnpm
pnpm add -D node-sass
pnpm add -D sass
# yarn
yarn add node-sass --dev
yarn add sass --dev
```

```bash
# npm
npm install -D sass
npm install -D node-sass
# pnpm
pnpm add -D sass
pnpm add -D node-sass
# yarn
yarn add sass --dev
yarn add node-sass --dev
```

- For `Less` support install `less`:
Expand Down
Loading

0 comments on commit e9a93ef

Please sign in to comment.