2
は私がガルプあまり他の人が
gulp.task('less', function() {
return gulp.src(['./Content/css/**/*.less'])
.pipe(less({
paths: [path.join(__dirname, 'less', 'includes')]
}))
.pipe(gulp.dest(paths.webroot + 'css'));
});
を行う出力
main.css
other1.css
other2.css
other3.css
は実際にそれが少ないため、CSSを生成し、必要私は
main1.less
main2.less
main3.less
other1.less
other2.less
other3.less
があると分離させ、複数のファイルを結合ファイル...複数のファイルを1つにまとめ、他のファイルを別々のファイルにまとめる方法はありますか?