File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ Use [PostCSS Sass] as a plugin:
48
48
49
49
``` js
50
50
postcss ([
51
- require (' @csstools/postcss-sass' )(/* node -sass options */ )
51
+ require (' @csstools/postcss-sass' )(/* dart -sass options */ )
52
52
]).process (YOUR_CSS );
53
53
```
54
54
@@ -87,7 +87,7 @@ var postcss = require('gulp-postcss');
87
87
gulp .task (' css' , function () {
88
88
return gulp .src (' ./src/*.css' ).pipe (
89
89
postcss ([
90
- require (' @csstools/postcss-sass' )(/* node -sass options */ )
90
+ require (' @csstools/postcss-sass' )(/* dart -sass options */ )
91
91
])
92
92
).pipe (
93
93
gulp .dest (' .' )
@@ -112,7 +112,7 @@ grunt.initConfig({
112
112
postcss: {
113
113
options: {
114
114
use: [
115
- require (' @csstools/postcss-sass' )(/* node -sass options */ )
115
+ require (' @csstools/postcss-sass' )(/* dart -sass options */ )
116
116
]
117
117
},
118
118
dist: {
You can’t perform that action at this time.
0 commit comments