tackbox 0.1.92 → 0.1.94

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.
Files changed (2) hide show
  1. package/README.md +21 -0
  2. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tackbox",
3
- "version": "0.1.92",
3
+ "version": "0.1.94",
4
4
  "description": "ESLint and Markdown lint plugins, an Oh My Pi extension, plus direct error-reporting helpers for JavaScript and TypeScript.",
5
5
  "license": "MIT",
6
6
  "main": "./js/eslint-plugin.js",