I was wondering if there is a way to get Bazel to list, output, display, etc., all of the commands that can be executed from a command line that are run during a build afte
I'd use aquery:
bazel aquery //foo
It's very fast, because it prints the actions without executing the build. And you don't have to do a bazel clean before.
bazel clean