You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When running ./gradlew :services:node-services:dockerBuild, the node-services won't pull the latest restate sdk dependencies. This often leads to failures like:
> [email protected] build
> tsc --noEmitOnError
src/interpreter/test_driver.ts:253:25 - error TS2339: Property 'interpret' does not exist on type 'IngressSendClient<unknown>'.
253 return client.interpret(
~~~~~~~~~
src/interpreter/test_driver.ts:312:64 - error TS2339: Property 'counter' does not exist on type 'IngressClient<unknown>'.
312 await ingress.objectClient(interpreterLn, `${id}`).counter()
~~~~~~~
Found 2 errors in the same file, starting at: src/interpreter/test_driver.ts:253
The problem seems to be related to the package-lock.json and the node-modules. If I delete both, then it fetches the latest updates. It would be great if running the gradle task would always pull in the latest dependencies.
The text was updated successfully, but these errors were encountered:
When running
./gradlew :services:node-services:dockerBuild
, the node-services won't pull the latest restate sdk dependencies. This often leads to failures like:The problem seems to be related to the
package-lock.json
and thenode-modules
. If I delete both, then it fetches the latest updates. It would be great if running the gradle task would always pull in the latest dependencies.The text was updated successfully, but these errors were encountered: