tackbox 0.1.71 → 0.1.72

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 +8 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -191,9 +191,14 @@ fetched separately and cached per version:
191
191
  wheel's `engines.json`, and
192
192
  unpacks it once into `$XDG_DATA_HOME/tackbox/engines/<version>/`
193
193
  (default `~/.local/share/...`; override `TACKBOX_ENGINES_DIR`).
194
- Every later thin version reuses that one copy, so a stream of
195
- `@latest` patch bumps never re-materializes the engines. Bumped only
196
- when an engine changes.
194
+ A machine-wide per-version lock makes concurrent first runs share
195
+ one download: one process fetches and verifies while every other
196
+ process waits and then reuses the committed store. Every later thin
197
+ version reuses that one copy, so a stream of `@latest` patch bumps
198
+ never re-materializes the engines. Installed engine versions coexist
199
+ rather than deleting one another during normal commands, so an older
200
+ thin client cannot force a re-download. Bumped only when an engine
201
+ changes.
197
202
 
198
203
  After the first fetch tackbox runs fully offline until the engine
199
204
  version changes. Platform wheels cover Linux x86_64/arm64 (manylinux),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tackbox",
3
- "version": "0.1.71",
3
+ "version": "0.1.72",
4
4
  "description": "ESLint and Markdown lint plugins plus direct error-reporting helpers for JavaScript and TypeScript.",
5
5
  "license": "MIT",
6
6
  "main": "./js/eslint-plugin.js",