Я использую gulp и мне нужно объединить все мои файлы .styl в 1 главный css-файл без импорта в main.styl.Как я могу это сделать?Мне не нравятся многие CSS-файлы, я желаю только одного :) Спасибо и извините за мой английский.
Мои задания gulp:
gulp.task('styl', function() {
return gulp.src('src/helpers/styl/main.styl')
.pipe(stylus())
.pipe(autoprefixer({
browsers: ['last 4 versions'],
cascade: true
}))
.pipe(gulp.dest('src/css/'));
});
gulp.task('serve', ['styl'], function() {
server.init({
server: 'src',
notify: true,
open: true,
cors: true,
ui: false
});
gulp.watch('src/blocks/**/*.styl', ['styl']);
gulp.watch('src/helpers/pug/*.pug', ['pug']).on('change', server.reload);
gulp.watch('src/pages/*.pug', ['pug']).on('change', server.reload);
gulp.watch('src/blocks/**/*.pug', ['pug']).on('change', server.reload);
gulp.watch('src/css/main.css').on('change', server.reload);
run(
'pretty'
);
});
И файл main.styl для импорта:
@import 'src/blocks/block/*'
@import 'src/helpers/block/*'