kodu 3.0.2 → 3.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -46,11 +46,14 @@ Requires Go 1.25+ and a C toolchain (CGO is used for the tree-sitter parsers).
|
|
|
46
46
|
|
|
47
47
|
```bash
|
|
48
48
|
git clone https://github.com/uxname/kodu.git && cd kodu
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
49
|
+
task build # → dist/kodu
|
|
50
|
+
task test # run the test suite
|
|
51
|
+
task lint # gofmt + go vet + golangci-lint
|
|
52
52
|
```
|
|
53
53
|
|
|
54
|
+
> Tasks are defined in `Taskfile.yml` and run with [Task](https://taskfile.dev).
|
|
55
|
+
> Run `task` (or `task --list`) to see all available targets.
|
|
56
|
+
|
|
54
57
|
---
|
|
55
58
|
|
|
56
59
|
## kodu init
|