@ai-matrx/tap-target 0.2.2 → 0.2.4
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/CHANGELOG.md +27 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,32 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.2.4
|
|
4
|
+
|
|
5
|
+
Automatic changed-only republish (docs/metadata drift since the last tag — see
|
|
6
|
+
`git diff npm/tap-target/v0.2.3..npm/tap-target/v0.2.4 -- apps/shared/tap-target`).
|
|
7
|
+
No source changes intended and no consumer action required.
|
|
8
|
+
|
|
9
|
+
## 0.2.3 — 2026-09-10
|
|
10
|
+
|
|
11
|
+
**The pin is gone for good — this is the release 0.2.2 tried to be.** 0.2.2
|
|
12
|
+
republished to re-point `@ai-matrx/design-system` forward, and then published
|
|
13
|
+
`"0.14.0"` for exactly the same reason 0.2.1 published `"0.11.2"`: `pnpm pack`
|
|
14
|
+
rewrites a `workspace:*` sibling spec to the sibling's EXACT version in the
|
|
15
|
+
packed manifest, so every republish just moved the pin. Chasing it one release
|
|
16
|
+
at a time was never going to end.
|
|
17
|
+
|
|
18
|
+
The class is closed at the mechanism (C15 / C27, THE TRANSITIVE PIN HAZARD):
|
|
19
|
+
the published manifest now declares every `@ai-matrx/*` sibling as `"latest"`,
|
|
20
|
+
while `workspace:*` stays in source for monorepo dev resolution. One shared
|
|
21
|
+
pack step (`apps/shared/scripts/pack-latest-siblings.mjs`) performs the
|
|
22
|
+
rewrite, every package's tarball canary fails on any packed `@ai-matrx/*` spec
|
|
23
|
+
that is not exactly `"latest"`, and `check_ts_sibling_graph.mjs` refuses a
|
|
24
|
+
publish path that stops running either. No source change.
|
|
25
|
+
|
|
26
|
+
### Consumer action
|
|
27
|
+
|
|
28
|
+
none — sibling specs now float.
|
|
29
|
+
|
|
3
30
|
## 0.2.2 — 2026-09-10
|
|
4
31
|
|
|
5
32
|
**A republish so consumers run ONE design-system, not two.** No source change.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ai-matrx/tap-target",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.4",
|
|
4
4
|
"description": "The AI Matrx tap-target button system: an invisible 44x44 touch ring over a 32x32 visible pill, glass/transparent/solid/group variants with correct ref forwarding for Radix asChild triggers, inline labels, link/label/button trigger resolution with an injectable link component, tooltip wiring, and ~60 pre-composed one-tag buttons.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
},
|
|
58
58
|
"dependencies": {
|
|
59
59
|
"@radix-ui/react-tooltip": "^1.2.8",
|
|
60
|
-
"@ai-matrx/design-system": "
|
|
60
|
+
"@ai-matrx/design-system": "latest"
|
|
61
61
|
},
|
|
62
62
|
"peerDependencies": {
|
|
63
63
|
"react": ">=18.0.0"
|
|
@@ -88,10 +88,10 @@
|
|
|
88
88
|
"scripts": {
|
|
89
89
|
"build": "tsup",
|
|
90
90
|
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
|
|
91
|
-
"check:package": "pnpm build && publint && pnpm verify:tarball",
|
|
91
|
+
"check:package": "pnpm build && node ../scripts/check-exports-agreement.mjs && publint && pnpm verify:tarball",
|
|
92
92
|
"typecheck": "tsc -p tsconfig.json --noEmit",
|
|
93
93
|
"test": "vitest run",
|
|
94
94
|
"test:watch": "vitest",
|
|
95
95
|
"verify:tarball": "node ./scripts/verify-tarball.mjs"
|
|
96
96
|
}
|
|
97
|
-
}
|
|
97
|
+
}
|