npm i @nexssp/min -D # install for devDependencies
Just FAST minify/compress src to dist folder by one command.
npx @nexssp/min # it will just compress js files from ./src/ to ./dist/
npx @nexssp/min ./source/ ./destination/ # change source and destination
const { compress } = require("@nexssp/min");
(async () => {
const result = await compress(from, to, { glob });
result.forEach((r) =>
ok(
`${bold(yellow(r.file))} ${r.length} => ${r.compressed.length} ${bold(
"(" + r.compressed.percentage + "%)"
)}`
)
);
})();