tackbox 0.1.93 → 0.1.95
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 +21 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -877,3 +877,24 @@ docs/
|
|
|
877
877
|
- Versioned via git tags (`vMAJOR.MINOR.PATCH`); CI auto-bumps the
|
|
878
878
|
patch tag on every green push to `main` and publishes the wheels.
|
|
879
879
|
Consumers track `@latest`, never a pinned version.
|
|
880
|
+
|
|
881
|
+
### Working on tackbox
|
|
882
|
+
|
|
883
|
+
Run `pre-commit install` (or `uvx pre-commit install`) once per checkout.
|
|
884
|
+
The hook in `.pre-commit-config.yaml` runs `python3 dev.py check` on every
|
|
885
|
+
commit, and CI runs the identical gate.
|
|
886
|
+
|
|
887
|
+
The following host toolchains must be on `PATH`:
|
|
888
|
+
|
|
889
|
+
- Go, pinned by `go.mod`;
|
|
890
|
+
- Node 22 with npm; CI's Node version is in `.github/workflows/ci.yml`, while
|
|
891
|
+
the bundled engine's Node version is pinned in `engines/manifest.json`;
|
|
892
|
+
- JDK 17 with Maven; the Java level and Maven configuration live in
|
|
893
|
+
`java/pom.xml`;
|
|
894
|
+
- opengrep, pinned in `engines/manifest.json` and installed at that version
|
|
895
|
+
by CI;
|
|
896
|
+
- uv, which is not version-pinned.
|
|
897
|
+
|
|
898
|
+
Everything else - `node_modules`, Maven build output, Python virtual
|
|
899
|
+
environments, and Go modules - is reproduced by `dev.py check`; nothing needs
|
|
900
|
+
to be synchronized by hand.
|
package/package.json
CHANGED