Answer the question
In order to leave comments, you need to log in
Gulp how to merge 10 files?
Good afternoon!
In general, the essence is such a directory
app/
bower/
normalize/
jquery/
css/
js/
font/
img/
jade/
stylus/
build/ -- Сюда складываются билды уже готовые для запуска на продакшен, все минифицировано кроме html файлов
public/
css/
main.css -- Стили которые написаны в Stylus
other.css -- Все остальные стили которые используются в проекте включая normalize.css, fonts.css и т.д., то есть файлы которые я не менял
js/
js - библиотеки
main.js
fonts/
img/
index.html
// Собираем все остальные CSS в 1 файл
gulp.task('css', function() {
gulp.src('./app/css/**/*.css')
.pipe(concat('other.css'))
.on('error', console.log) // Если есть ошибки, выводим и продолжаем
.pipe(autoprefixer({
browsers: ['last 15 versions'],
cascade: true
}))
.pipe(gulp.dest('./public/css/')); // записываем css
});
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question