davidAtInleague
davidAtInleague
I think I have the same issue? Can't quite tell. I migrated a webpack based quasar project to vite; the webpack project has a working android capacitor setup, it launches...
on this end, seems vite-plugin-checker ends up throwing an exception that gets pretty well silenced when running in capacitor/android mode. fwiw this line in dep-611778e0.js (representing tsconfck source?) called from...
Hi I got this too, using vite; adding "quill" to the vite configuration's `optimizeDeps` seems to fix it, i.e. ``` defineConfig({optimizeDeps: ["quill"]}) ``` seems to do the trick. I got...
`resetQuery` does seem to be a substitute for places that were previously using `reset` -- `reset` clears at least the `select` and `where` lists (and presumably all the other things...
> A baby step would seem to be a generalized mechanism of adding SQL in some arbitrary location Additional example of benefits from this: hints to joins, e.g. ``` inner...
`getQualifiedLocalKeys` seems to have slightly different logic than `getQualifiedForeignKeyNames`, with the localKey variant seeming to handle arrays a little more robustly than the foreignKey one. https://github.com/coldbox-modules/quick/blob/4e2b1996ea902c1ec523d41b39ffd1f93c5b0c4e/models/Relationships/HasManyDeep.cfc#L233 https://github.com/coldbox-modules/quick/blob/4e2b1996ea902c1ec523d41b39ffd1f93c5b0c4e/models/Relationships/HasManyDeep.cfc#L258 Here's a quick...
I added a failing test for our use case, and then a fix for it, but it breaks a few other tests in `tests/specs/integration/BaseEntity/Relationships/QueryingRelationshipsSpec.cfc`. It seems like polymorphic relationships generate...
I intend to revisit this when we re-attempt an API upgrade in the future, but it probably won't be for a while. I wouldn't be insulted if you marked this...
`onClickCapture` works but there's not a declared type for it, so TSC kicks it out. This leaves us with the workaround ``` {}}}>... ``` Maybe types can be added for...