John Lindquist

Results 219 comments of John Lindquist

@kyen99 @burhanrashid52 Thanks for reporting. I have a newer build working on Sequoia, just ironing out some smaller bugs. Hope to get it out by the end of the month

https://github.com/script-kit/app/releases/tag/v3.1.1 @kyen99 @burhanrashid52 That link will take you to the v3 beta releases. We've tested on a bunch of machines and everything seems good to go. Please let me know...

@burhanrashid52 is there any chance you can look through the ~/Library/Logs/Kit/main.log for the error of when it failed to update? Try and search for "error" around the timestamp when you...

@bmarden oh, interesting. Try this: cd ~/.kit pnpm i --prod Then open Kit again. I'll look into what could be causing the asdf shim issue

@bmarden @hansgen I'll have some time to work on this tonight. It is attempting to find/use the globally installed pnpm (then it falls back to installing it if it can't...

@hansgen Oh, so: 1. Script Kit works for you? 2. This error: `✘ [ERROR] Cannot read directory "../../../../Library/pnpm/nodejs/20.17.0/bin/node": not a directory` is coming from the aws cdk cli?

@hansgen hmm, trying to think how to handle this scenario. It uses the default pnpm install script: https://github.com/script-kit/app/blob/main/src/main/install.ts#L588 (which is the same as https://pnpm.io/installation#on-posix-systems ) Can you remove pnpm from...

@hansgen wow, amazing investigation, thank you!!! 💛💛💛 I'll investigate if the pnpm install script will allow me to target a specific dir to keep it coupled with Script Kit. Q:...

@hansgen Does a simple hack like this fix it? ```js function openCode(selected: string) { delete process.env.NODE_PATH edit(selected); } ```

@hansgen Can you try this build: https://github.com/script-kit/app/releases/tag/v3.1.18 Also, make sure that NODE_PATH isn't set in your `~/.kenv/.env` > Note: this will install pnpm to ~/.kit/pnpm and avoid the modification of...