Kostya Ostrovsky

Results 27 comments of Kostya Ostrovsky

I want to implement this as its very handy to us. Do you have any preferred way for this to be implemented? I was thinking perhaps build script can set...

> > I want to implement this as its very handy to us. > > That would be great :-) > > > Do you have any preferred way for...

Good points, simplify the implementation. > Are you sure that it is not possible to query via gotemplate statements nested map[string]interface{} types? > If it would be possible we would...

Reached 76 stars.. can create the brew package now :)

any progress on this? i'm also interested in this

Hey Sounds good, I will do it :)

Any progress? The `appendTo` fix doesnt seem to work https://codepen.io/kostyay/pen/vYJxoze

Ive tried using `xxx/*/*/manifest.yaml` and it didnt help either **EDIT:** I realized that patterns must contain a regex group, otherwise they won't work anyway. This is what its supposed to...

@jazanne You can significantly speed up the initial parsing by caching the results returned by this function: https://github.com/launchdarkly/ld-find-code-refs/blob/68b13f09c742e421f552fbe3c085a6df2f68bdd1/aliases/alias.go#L79 Example: ```go var filepathGlobCache = map[string][]string{} func filepathGlob(absGlob string) ([]string, error) {...