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
cd my-repo
bazel query --output=package 'buildfiles(deps(//projects/my-awsome-service/...))'|\
awk '!/^@/ {print "/"$0}'\ # Ignore external deps, prepend all paths with '/'> dir/to/manifests/my-awsome-service/baze-deps.manifest
# Upload the file to some place
curl -XPOST dir/to/manifests/my-awsome-service/baze-deps.manifest
# Or add it into the git repo
git add dir/to/manifests/my-awsome-service/baze-deps.manifest
git commit -m 'manifest update' -m 'Update details: blah blah'
git push
Thanks!