Gajus Kuizinas
Gajus Kuizinas
> Maybe [`sql-surveyor`](https://www.npmjs.com/package/sql-surveyor) would be an alternative for a parser? Seems to be not maintained anymore.
Would a contribution for this change be accepted or are there considerations that have been not addressed?
> If there was a way to pass: I think I can do that. Let me give that a try.
@predragleka Please remove the `.idea` addition for `.gitignore`.
A quick and obvious win is to at least group capturing of width and height. https://github.com/pelotoncycle/resize-observer/blob/master/resize-observer.js#L131-L132 This causes two layout calculations.
You could further reduce the number of `getBoundingClientRect` calls by using `MutationObserver`: setup an observer on all parent elements. In combination with `window` "resize" event, this will give an indication...
Highly theoretically, you could just release `relay-esm` package that simply re-exports everything as ESM: ```ts // Because Relay is a CommonJS module, we are having problems with Vite bundling it....
@lupomontero any chance of getting this out?
This specific problem is a non-issue b/c I can replace ```yaml server: {{ .Values.spec.destination.server | quote }} ``` with ```yaml server: '{{ .Values.spec.destination.server }}' ``` However, the one that I...