bazel_fetch_dependencies
Fetch external dependencies for Bazel projects by specifying target lists and additional command-line arguments, enabling streamlined dependency management in restricted environments.
Instructions
Fetch Bazel external dependencies
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| additionalArgs | No | Additional Bazel command line arguments (e.g. ['--experimental_repository_cache_hardlinks', '--repository_cache=path/to/cache']) | |
| targets | No | List of specific targets to fetch dependencies for | 
Input Schema (JSON Schema)
{
  "properties": {
    "additionalArgs": {
      "description": "Additional Bazel command line arguments (e.g. ['--experimental_repository_cache_hardlinks', '--repository_cache=path/to/cache'])",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "targets": {
      "description": "List of specific targets to fetch dependencies for",
      "items": {
        "type": "string"
      },
      "type": "array"
    }
  },
  "type": "object"
}