nomeaning
nomeaning
This is caused by the incorrect build result for esm-es5. https://github.com/revolist/revogrid/blob/4df18a24ee9660c6ab485804dbb621c0ad668bfd/src/plugins/sorting/sorting.plugin.ts#L179 For esm-es5, the build result is as follows. ```javascript return __spreadArray([],Array(e.length).keys(),true)} ``` It returns empty array because __spreadArray of...
My workaround is to prepare a dedicated tag and make everything a build target regardless of tags only when processing with Gazelle. defaults_local.go ```go //go:build local || gazelle package library...
I remember there was a memory leak in the part using Map. It can be resolved by using WeakMap, like in this commit: https://github.com/argentumcode/JSONPatcherProxy/commit/43f7b2bc84a75b955fd323e259531f8e4128ff29 If the maintainer is okay with...