minification-benchmarks
minification-benchmarks copied to clipboard
add minify-js and minifier-rs
@privatenumber minifier-rs doesn't seem to allow using stdin or stdout, it only takes input and output files. where do you suggest I store the temporary files to run the test? there's already handling for input files but the issue is that the output file can't be specified and is created next to the input file
You can make a directory in $TMPDIR and remove it on completion:
const temporaryDirectory = path.join(fs.realpathSync(os.tmpdir()), 'minification-data');
Hi, minify-js bas been added through #300
thanks i dont get anything done