# PR Description
* Adds/updates the following files to all toolkits:
- `.pre-commit-config.yaml`
- `.ruff.toml`
- `LICENSE`
- `Makefile`
- `pyproject.toml`
* Lint all toolkits such that they pass `make check` and `make test` (a
total doozy). This includes adding some unit tests and evals.
* Github workflow for testing toolkits before merge into main (courtesy
of @sdreyer)
* Added a QOL improvement for tool developers for when they need to get
the context's auth token.
* Minor updates to `arcade new` template.
12 lines
231 B
Bash
Executable file
12 lines
231 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Get all directories and format as JSON array
|
|
echo -n '['
|
|
ls -d toolkits/*/ | cut -d'/' -f2 | sort -u | awk '{
|
|
if (NR==1) {
|
|
printf "\"%s\"", $0
|
|
} else {
|
|
printf ", \"%s\"", $0
|
|
}
|
|
}'
|
|
echo ']'
|