gulp提取公用部分

Posted 郭康勋kawhi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了gulp提取公用部分相关的知识,希望对你有一定的参考价值。

利用gulp-file-include插件实现

 

gulpfile.js代码

var gulp = require(‘gulp‘);
var fileinclude = require(‘gulp-file-include‘);

gulp.task(‘fileinclude‘,function(){
    //适配page所有文件夹下html文件,排除page下的include文件夹的html
    gulp.src([‘page/**/*.html‘,‘!page/include/**.html‘])
        .pipe(fileinclude({
            prefix: ‘@@‘,
            basepath: ‘@file‘
        }))
        .pipe(gulp.dest(‘dist‘));
});

 

模版页面引入代码

 @@include(‘include/header.html‘)

 

以上是关于gulp提取公用部分的主要内容,如果未能解决你的问题,请参考以下文章

如何将使用 Gulp 的节点部署到 heroku

单链表存单词(相同部分公用)

Asp.net MVC 视图之公用代码

SVN多项目代码公用怎么实现?

vue实现部分页面导入底部 vue配置公用头部底部,可控制显示隐藏

Django 之 母版使用