Closed sirenkovladd closed 5 months ago
npm -v
node -v
uname -a
Error with removing export values
import { minify } from "@putout/minify"; const source = `function test() { return [1, 2]; } export const [one, two] = test();`; const result = minify(source); console.log('>', result, '<');
❯ node i.js > <
The funny thing, that this is the same :)
export const [one, two] = test();`;
and:
const [one, two] = test(); export { one, two,
Just fixed in v3.19.6 🎉
Thank you
npm -v
): 10.5.2node -v
: v20.13.1uname -a
on Linux): Darwin arm64Error with removing export values