John-Mason Shackelford

Results 28 comments of John-Mason Shackelford

> Someone pointed out that Issue #1148 is actually caused by our dependency on the glob library. Switching to `fast-glob` will almost certainly fix that issue too. Just to clarify...

See https://github.com/axilleasiv/vscode-javascript-repl-docs/issues/29#issuecomment-2321920346

@niieani's suggestion works for me! added to `tsconfig.json` in project root directory : ```json { "compilerOptions": { "alwaysStrict": false } } ```

https://github.com/DefinitelyTyped/DefinitelyTyped/discussions/69867

@nfischer This issue arises because of a change in glob. c.f. https://stackoverflow.com/questions/75890950. The solution (If I have understood the glob maintainer) is to update glob and remove a reference to...

Related to https://github.com/All-Hands-AI/OpenHands/issues/8496

I've added an example repo that is generated using oclif generate but then swapped out mocha tests for vitest. See https://github.com/jpshack-at-palomar/oclif-with-vitest

See https://github.com/oclif/test/issues/745#issuecomment-2851576434

@eyerean run tests with DEBUG=* and post your debug logs and we can see if something jumps out.

I believe I am seeing this w/ node 20.10.0 and isolated-vm 5.0.0 on linux but not MacOS. I have an exit hander that tries to clean up when the process...