使用gulp-useref如何添加额外的文件?

时间:2017-02-21 10:27:51

标签: javascript angularjs node.js gulp gulp-useref

我是这样的html文件:

std::allocator

构建这样的文件:

My_alloc<char>{my_arena1}

现在我用... <!-- build:js build/js/vendor.js --> <script src="dep/angular/angular.js"></script> <!-- endbuild --> 打包所有的视图文件,生成一个template.js,我想把这个文件添加到编译好的html文件里面,怎么办呢?

我在<script src="build/js/vendor.xxxxxxxx.js"></script> 设置选项中找到了gulp-angular-templatecache文档,但我过去常常找到不想实现该功能的内容。

1 个答案:

答案 0 :(得分:1)

我用另一种方式解决了它。

首先在页面上写下:

<!-- build:templates --><!-- endbuild -->

在打包之前用gulp-replace替换为:

<!-- build:js build/js/templates.js -->
    <script src="build/js/templates.js"></script>
<!-- endbuild -->

最后统一编译。

代码:

var indexHtmlFilter = $.filter(['**/*', '!**/index_dev.html'], {
    restore: true
});

var fontglyphiconsMatch = /^\.\.\/fonts\/glyphicons/;
var fontawesomeMatch = /^\.\.\/fonts\/fontawesome-/;
var imgMatch = /^\.\.\/img\//;

var matchUrlType = function(url){
    if(fontglyphiconsMatch.test(url))
        return  url.replace(/^\.\./, '/dep/bootstrap-css-only');

    if(fontawesomeMatch.test(url))
        return url.replace(/^\.\./, '/dep/font-awesome');

    if(imgMatch.test(url))
        return url.replace(/^\.\./, '');
};
gulp.src('app/index_dev.html')
    .pipe($.htmlReplace({
        templates: `
            <!-- build:js build/js/templates.js -->
            <script src="build/js/templates.js"></script>
            <!-- endbuild -->
            `
    }))
    .pipe($.useref())
    .pipe($.if('*.js', $.uglify({
        output: {
            ascii_only: true
        }
    })))
    .pipe($.if('*.css', $.modifyCssUrls({
        modify: matchUrlType
    })))
    .pipe($.if('*.css', $.cleanCss()))
    .pipe(indexHtmlFilter)
    .pipe($.rev())
    .pipe($.revFormat({
        prefix: '.'
    }))
    .pipe(indexHtmlFilter.restore)
    .pipe($.revReplace())
    .pipe($.if('*.html', $.htmlmin({
        collapseWhitespace: true
    })))
    .pipe($.if('index_dev.html', $.rename('index.html')))
    .pipe(gulp.dest('./app'));