Skip to content

Commit

Permalink
Update readme comment (#22)
Browse files Browse the repository at this point in the history
* Update

Replace all the comment has node-sass to dart-sass. Add PR#13 link to description in case people wonder what happened.

* Update README.md
  • Loading branch information
dtvn authored Dec 28, 2023
1 parent 277ce77 commit 0630b14
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Use [PostCSS Sass] as a plugin:

```js
postcss([
require('@csstools/postcss-sass')(/* node-sass options */)
require('@csstools/postcss-sass')(/* dart-sass options */)
]).process(YOUR_CSS);
```

Expand Down Expand Up @@ -87,7 +87,7 @@ var postcss = require('gulp-postcss');
gulp.task('css', function () {
return gulp.src('./src/*.css').pipe(
postcss([
require('@csstools/postcss-sass')(/* node-sass options */)
require('@csstools/postcss-sass')(/* dart-sass options */)
])
).pipe(
gulp.dest('.')
Expand All @@ -112,7 +112,7 @@ grunt.initConfig({
postcss: {
options: {
use: [
require('@csstools/postcss-sass')(/* node-sass options */)
require('@csstools/postcss-sass')(/* dart-sass options */)
]
},
dist: {
Expand Down

0 comments on commit 0630b14

Please sign in to comment.