Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
gulp.task('insert:css', function() { return gulp.src(['html/index.html']) // находим нужный файл или файлы .pipe(fileinclude({ prefix: '@@', // ищем в них эти префиксы basepath: '@file' // и указанные файлы })) .pipe(gulp.dest('dist/html')) })
<!DOCTYPE html> <html> <head> <title>My index</title> <style> @@include('../dist/css/main.css') </style> </head> <body> </body> </html>
gulp.task("insert:css", function() { return gulp.src(['html/index.html']) .pipe(include()) .pipe(gulp.dest("dist/html")); });
<!DOCTYPE html> <html> <head> <title>My index</title> </head> <body> <style> /*=include ../dist/css/main.css */ </style> </body> </html>