Fábio Santos
Fábio Santos
The case where you lose your image changes is mostly when you change branches, which changes the DVC file. It shouldn't be a big deal. Using DVC pipelines sounds like...
To fix this I think we should cache the `.cache` and `public` folders across builds. It's trivial in most CIs but it doesn't seem to be documented on netlify. They...
By the way, `tslint` is now deprecated for plain old `eslint`. Maybe we can migrate as a part of this issue. Another thing we need, is to check that every...
1. `b()` disappearing is what `/*__PURE__*/` is for! If something is pure, and you call it and don't use the result, it did absolutely nothing, so it can be removed....
@jridgewell > That should have inlined bar into console.log(12), right? It's a const in a try block so that's two things Terser doesn't like to mess with :)
I've had the plan to do this for a while, but it has to be done carefully so as to not confuse other software using this. These annotations have caused...
@RReverser this is a pretty good idea! Thanks for sending this PR. However it's going to be a tad complex to work this out, I feel. Maybe it's easier to...
@RReverser By between awaits I mean this situation: ``` await something() const a = 42 doSomething(a) await somethingElse() ``` Where we know line 3 happens immediately after line 2, without...
`await` doesn't affect local (or in-scope) variables itself, but it lets other things run which might. Take this function: ``` let fooSource = [] async function x() { const foo...
We actually could just say it "has side effects" and call it a day, but it's one of those bandaids that can be troublesome to maintain, understand and debug in...