-
Notifications
You must be signed in to change notification settings - Fork 34
Closed
Labels
Description
https://github.com/coderaiser/minify?tab=readme-ov-file#options
"js": {
"type": "putout",
"putout": {
"quote": "'",
"mangle": true,
"mangleClassNames": true,
"removeUnusedVariables": true,
"removeConsole": false,
"removeUselessSpread": true
}
},It says set js.putout for config putout options.
However, it's not working now. Rather it's working with:
"js": {
"type": "putout",
"mangle": false,
"mangleClassNames": false
},I think it's mistake that the putout is called with options not options.putout.
Line 53 in 600bbc6
| return await minify(source, options); |