Ayush Walekar

Results 5 comments of Ayush Walekar

@irinatarn , I have got similar use-case, did you get any lead on this?

For anybody looking for DiffNavigator implementation within react -> `{ DiffEditor } in "@monaco-editor/react";` This is how I got it working, following the playground example(https://microsoft.github.io/monaco-editor/playground.html#creating-the-diffeditor-navigating-a-diff) as mentioned by @irinatarn ....

using monorepo, got error: ``` node:internal/modules/esm/resolve:257 throw new ERR_MODULE_NOT_FOUND( ^ Error [ERR_MODULE_NOT_FOUND]: Cannot find module '/Users/uname/githome/projectname/packages/service-registry/dist/service' imported from /Users/uname/githome/projectname/packages/service/dist/index.mjs at finalizeResolution (node:internal/modules/esm/resolve:257:11) at moduleResolve (node:internal/modules/esm/resolve:913:10) ``` I am already using...

> can you share an example? @wardpeet , try over here: https://codesandbox.io/p/devbox/brave-hoover-43kxw6 In root folder: ```sh pnpm turbo run build --filter=@test/service mastra dev ``` To fix: go to built `packges/service/dist/index.mjs`...

Had same issue. Using `turbo 2.5.3` Solved it by: ```sh turbo daemon stop rm -rf .turbo # optionally set timeout if you need # TURBO_DAEMON_TIMEOUT=60000 turbo daemon start ```