Josh Nisenson

Results 7 comments of Josh Nisenson

I was able to resolve it by passing --external debug to the command line bun build process and that solved it for me.

@mtiller-jh I'm building out my esm module like this: `bun build ./cli.ts --target node --external lodash-es --external debug --outdir ./dist --tsconfig tsconfig.esm.json`

It does seem that the types are broken for this [apply-example.ts](https://github.com/kubernetes-client/javascript/blob/master/examples/typescript/apply/apply-example.ts) I get the following for line 19: `const specs: k8s.KubernetesObject[] = yaml.loadAll(specString);` ```sh Type 'unknown[]' is not assignable to...

I have run into a similar issue. I need to checkout multiple repos side by side and run bun install in both and some of the install happens from a...

@wobsoriano I just upgraded and tried but I get the same result. My store basically has all null values: ```javascript store: { auth: { sessionClaims: null, sessionId: null, userId: null,...

@wobsoriano I guess I can try switching to the clerk node sdk and see if I can just implement it myself but was hoping not to have to. Either way...

Just to follow up, I had a badly formatted CLERK_JWT_KEY which was causing the issue.