Kevin Pierce
Kevin Pierce
+1 I also burned several hours due to this not being explicitly called out. Even after pouring over a lot of documentation and public posts.
@lrstanley I wanted to this exact thing, so thank your for this. It seems like removing `run: when_changed` will work how you intended. I added echo $$ and $PPID to...
Maybe I'm wrong as the log entry happens again for the frontend.
Sorry for the spam... It looks like the frontend task needs sources or some reason to know not to restart... ```yml version: "3" output: prefixed tasks: frontend: cmds: - while...
I'm trying to solve similar problems except I have the firebase emulator thrown in. Looks like using `run: once` was helping, but any progress I make results in strange behavior....
As I became frustrated with doing multiple watches, I've settled on a pattern that seems to clear up all my issues. It's a bit funky, but the idea is I...
This is becoming even more of a problem with the experimental webframeworks. `firebase emulators:start --only functions:codebase,hosting:site` should be congruent with the same capability of `firebase deploy --only functions:codebase,hosting:site`. Now nextjs...
@Jason-SP-Chien I was hitting this problem yesterday. A possible work around is to call the `docref.Update()` to receive the full details. ```go job, err := bulkWriter.Update(ref, update) if err !=...
BulkWriter.Update versus DocumentRef.Update BulkWriter discards the Error and returns `fmt.Errorf("firestore: cannot update doc %v", doc.ID)` Could simply wrap it. ```go // Update adds a document update write to the queue...