gulp + browserify 转换配置

gulp + browserify transform configuration

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

这行不通,有什么提示吗? (是的,我是新手,我昨天安装了 node/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
    }; 

虽然不如把配置放在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" }}}]
}