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:
4848
4949``` js
5050postcss ([
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');
8787gulp .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: {
You can’t perform that action at this time.
0 commit comments