I'm using github action to do the deploy for my app. The deploy is working fine 4 days ago and my local docker also building wasp without any issue. I verified github action is using latest wasp version (0.16.5). But now I ran into the similar issue happened couple days ago:
../../../src/signalgen/client/operations.ts(612,17): error TS2742: The inferred type of 'useGetAllTemplates' cannot be named without a reference to 'wasp/node_modules/@tanstack/react-query'. This is likely not portable. A type annotation is necessary./home/runner/.local/share/wasp-lang/0.16.5/data/packages/deploy/node_modules/zx/build/core.cjs:416 const output = self._output = new ProcessOutput(dto); ^
../../../src/signalgen/client/operations.ts(612,17): error TS2742: The inferred type of 'useGetAllTemplates' cannot be named without a reference to 'wasp/node_modules/@tanstack/react-query'. This is likely not portable. A type annotation is necessary./home/runner/.local/share/wasp-lang/0.16.5/data/packages/deploy/node_modules/zx/build/core.cjs:416 const output = self._output = new ProcessOutput(dto); ^
I also tried to deploy from local with these commands
wasp cleanwasp buildwasp deploy fly deploy
wasp cleanwasp buildwasp deploy fly deploy
but no luck with it.
"@tanstack/react-query": "4.36.1",
"@tanstack/react-query": "4.36.1",
this is listed in the package-lock.json so not sure why it stop working again