We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bc21e44 commit 6d4ed45Copy full SHA for 6d4ed45
1 file changed
gulpfile.js
@@ -29,7 +29,10 @@ var fnSass = function (path) {
29
to: pkg.name + '-' + pkg.version + '.css'
30
}))
31
.pipe(plugins.size({ showFiles: true, title: '[CSS]' }))
32
- .pipe(gulp.dest(config.build + '/assets'));
+ .pipe(gulp.dest(config.build + '/assets'))
33
+ .on('end', function () {
34
+ require('fs').unlink(path);
35
+ });
36
};
37
gulp.task('styles:sass:imports', function () {
38
var files = [config.app + '/+(sass|app|common)/**/*.scss', '!' + config.app + '/sass/includes/*.scss', '!' + config.app + '/+(app|common)/**/_*.scss'];
0 commit comments