...
1# Hack
2
3`hack/` contains build configuration, Bazel macros, dependencies, one-off
4scripts, and utilities used for various automation and verification processes.
5
6# Linking Repo Tools to `$PATH`
7
8```sh
9# link all default tools to configured bin directory
10just link
11# link specific binary target to configured bin directory
12just link cmd/f8n/foo
13# clean up existing symbolic links
14just clean-links
15```
16
17## Adding Linked Tools
18
19Add the desired target to the `//hack:tools_to_link` target in the `BUILD.bazel`.
View as plain text