Fábio Santos

Results 309 comments of Fábio Santos

I think I found a workaround. Go to Settings > Application > Hardware Acceleration, and untick the checkbox. For me, it solved the flickering issue. Sharing some numbers, for completeness:...

I opened this PR over on acorn-import-attributes: https://github.com/xtuc/acorn-import-attributes/pull/36. If it gets merged, I'll implement quoted export-all in this one.

I decided to implement `export * as "string" from ...`, but not submit a test. Locally, I added `export * as "q" from "module";` to exports.js, and then ran the...

Hello! This is a touchy subject especially when keeping compatibility with UglifyJS. ```javascript /*#__PURE__*/ makeMacro`some code`("arg for some code") /*#__PURE__*/ makeMacro("some thing")`Hello` ``` You can have two tools remove different...

This hasn't been done yet because I still consider moving block-scoped variables around a tiny bit dangerous. Terser's parent project UglifyJS was built in the days before let and const,...

The reason this happened is because Terser sees `window.doSomething = [anything]` as a side effect, where `doSomething` might be called and have the wrong value of `isDevelopment`. Which would be...

This works fine on my end. Maybe powershell is doing something weird with the `reserved=[foo_,bar_]` argument and quoting is required? If not, what version of Terser are you using? You...

This bug is insane. I've isolated a minimal reproduction: ```js /* compress options, without defaults: { defaults: false, reduce_vars: true, unused: true, reduce_funcs: true, inline: true, sequences: true, side_effects: true,...