Skip to content

Commit 49759c7

Browse files
committed
2 parents dbaaf54 + 0630b14 commit 49759c7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ Use [PostCSS Sass] as a plugin:
4848

4949
```js
5050
postcss([
51-
require('@csstools/postcss-sass')(/* node-sass options */)
51+
require('@csstools/postcss-sass')(/* dart-sass options */)
5252
]).process(YOUR_CSS);
5353
```
5454

@@ -87,7 +87,7 @@ var postcss = require('gulp-postcss');
8787
gulp.task('css', function () {
8888
return gulp.src('./src/*.css').pipe(
8989
postcss([
90-
require('@csstools/postcss-sass')(/* node-sass options */)
90+
require('@csstools/postcss-sass')(/* dart-sass options */)
9191
])
9292
).pipe(
9393
gulp.dest('.')
@@ -112,7 +112,7 @@ grunt.initConfig({
112112
postcss: {
113113
options: {
114114
use: [
115-
require('@csstools/postcss-sass')(/* node-sass options */)
115+
require('@csstools/postcss-sass')(/* dart-sass options */)
116116
]
117117
},
118118
dist: {

0 commit comments

Comments
 (0)