We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
sync
1 parent 005ee98 commit c2f19dfCopy full SHA for c2f19df
tools/package-tools/gulp/build-scss-task.ts
@@ -10,7 +10,7 @@ const gulpCleanCss = require('gulp-clean-css');
10
export function buildScssTask(outputDir: string, sourceDir: string, minifyOutput = false) {
11
return () => {
12
return src(join(sourceDir, '**/*.scss'))
13
- .pipe(gulpDartSass().on('error', gulpDartSass.logError))
+ .pipe(gulpDartSass.sync().on('error', gulpDartSass.logError))
14
.pipe(gulpIf(minifyOutput, gulpCleanCss()))
15
.pipe(dest(outputDir));
16
};
0 commit comments