Mihovil Ilakovac

Results 46 comments of Mihovil Ilakovac

Remix is doing similar stuff with `.server` and `.client` folders: https://remix.run/docs/en/main/file-conventions/-server

I believe I waited the extra 5 seconds to get less flaky behaviour with Playwright waiting for the web app to start properly. It might not be entirely necessary, but...

Okay, so we need to unify the way we mangle the imports. I found the following using your regex: - `sdk/wasp/server/operations/actions/index.ts` and `sdk/wasp/server/operations/queries/index.ts` Found in `OperationsGenerator` -> (`"_ext"` suffix using...

The biggest issue I'd like to resolve to make this "proper name mangling" is to somehow keep track of aliases that were used and ensure no duplicate aliases are used...

All of the code that needed name mangling needed to come inside of the `Generator` monad, which wasn't too much of a difference since we used the `JsImport` in FileDrafts...

No longer valid PR since the latest changes to the `tsconfig.json`

Closed by https://github.com/wasp-lang/wasp/pull/1782

I agree that we should remove it 👍 It was a transient name that helped me to differentiate the old from the new stuff. We agreed we'll refactor the exports...

I feel like having multiple ways of importing same symbols could be confusing to users e.g. `import { LoginForm } from 'wasp/client/auth'` and `import { LoginForm } from 'wasp/client/auth/email'`. But...

I believe we solved this issues by using the `dedupe` option in Vite. There were some build issues afterwards, but they seemed unrelated. I'll let @sodic close this when he...