Alec Larson

Results 514 comments of Alec Larson

As a (bad) workaround, you can use the `link:` protocol: ```jsonc // In the package.json where the peer is installed: "foo": "link:./path/to/vendor/foo" ``` The `vendor` folder exists in the same...

I see you've already put a lot of work into this, but I'm curious why you don't split statements with libpg_query? - split with scanner: https://github.com/pganalyze/libpg_query/blob/43bad3cbcd1a70a30494b64f464c3f60579884ed/src/pg_query_split.c#L10 - split with parser:...

Surprised to hear confusion on that point. Maybe you misunderstood me? I don't know if you've ever tried editing minified code, but for anything but the simplest change, it's not...

In the meantime, installing an old version worked for me: Cline v3.0.12

Consider using [Radashi](https://github.com/aleclarson/radashi), a fork of Radash. - Backwards compatible with Radash - Open to collaboration (additional maintainers welcome, pull requests wanted) - Stays true to the ethos of Radash...

Hi @ocavue, you need a leading `**/` instead of `./`

The Radashi fork has an [ideas](https://github.com/orgs/radashi-org/discussions/categories/ideas) forum where we would gladly receive this proposal and any others you have. See you over there!

The current behavior of `add` is definitely problematic. I think making it async would be awesome. It would be a great replacement for the `ready` event, which is only emitted...

This is fixed in the [Radashi fork](https://github.com/radashi-org/radashi). ```ts // Test case import * as _ from 'radashi' const o = Object.create(null) o.a = 1 _.crush(o) // => { a: 1...

The [Radashi fork](https://github.com/radashi-org/radashi) would accept a PR for this. See you over there :)