gulp + browserify转换配置

时间:2015-02-15 19:11:49

标签: javascript node.js gulp browserify brfs

我正在使用浏览器gulp,如何配置brfs-htmlmin?在npm页面上,我发现我应该传递options.minify对象但是如何使用browserify做到这一点?

这不起作用,有什么提示吗? (是的,我是新的,我昨天安装了节点/ npm;)

gulp.task('scripts', ['clean'], function () {
    gulp.src('Components/initialize.js')
        .pipe(browserify({
            transform: ['brfs-htmlmin', { "opts": {minify: {removeComments: false}} }]
        }))
        .pipe(gulp.dest('./buildjs'));
});

最后我修改了brfs-htmlmin源代码,但必须有更好的方法

brfs-htmlmin来源:

module.exports = function(file, opts) {
    if(/\.json$/.test(file)) return through();

    opts = opts || {};
    opts.minify = opts.minify || {
        removeComments: false,
        collapseWhitespace: true,
        collapseBooleanAttributes: true,
        removeAttributeQuotes: true,
        removeRedundantAttributes: true,
        removeEmptyAttributes: true
    }; 

1 个答案:

答案 0 :(得分:0)

虽然不如在gulpFile.js上放置配置那么方便,但您可以将配置放在package.json上。

"//": "browserify transform config doesn't work if placed on gulpFile.js or karma.conf.js",
"browserify": {
    "debug": "true",
    "transform": ["brfs-htmlmin", { "opts": { "minify": {"removeComments": "false" }}}]
}