4

我正在使用带有 browserify 的 gulp,如何配置 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
    }; 
4

1 回答 1

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" }}}]
}
于 2016-10-21T05:34:18.183 回答