We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b2f3ef1 commit d5a90d4Copy full SHA for d5a90d4
gulpfile.js
@@ -33,8 +33,8 @@ var taskConcat = require('./gulp-tasks/concat.js');
33
//=======================================================
34
35
gulp.task('compile:sass', async function() {
36
- const prefix = (await prefixPromise).default;
37
- return taskCompile.sass(prefix);
+ const prefix = (await prefixPromise).default; // Await the prefix import
+ return taskCompile.sass(prefix); // Use autoprefixer
38
});
39
40
gulp.task('compile:js', function() {
0 commit comments