stringify
stringify copied to clipboard
Unable to pass `customAttrCollapse` option to `html-minifier`
browserify app.js --debug -t [ stringify --minify --minifyOptions [ --customAttrCollapse /ng-class/ ] --extensions [ .html ] ]
Will not work because the customAttrCollapse option is expected to be a regexp. html-minifier's command line interface will parse this argument into a regexp, but stringify does not.
Note that I get the same result with -t [ stringify --minify --minifier [ --options [ --customAttrCollapse /ng-class/ ] ] ]