Wierd output for build vite #4221
-
The command output is weird when building the Vite (React) application. This is a Git hook that executes the build every time you push. Normally is something like this.. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Those are escape sequences that we must not handle. We handle escape sequences in https://github.com/jesseduffield/gocui/blob/master/escape.go#L149 and we use gocui as a dependency in lazygit. From chatGPT:
So we just need to handle that case. Would you be up for raising a PR @Ridermansb ? |
Beta Was this translation helpful? Give feedback.
Those are escape sequences that we must not handle. We handle escape sequences in https://github.com/jesseduffield/gocui/blob/master/escape.go#L149 and we use gocui as a dependency in lazygit.
From chatGPT:
So we just need to handle that case. Would you be up for raising a PR @Ridermansb ?