anentrypoint-design 0.0.408 → 0.0.410

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "anentrypoint-design",
3
- "version": "0.0.408",
3
+ "version": "0.0.410",
4
4
  "description": "247420 design system SDK — webjsx + modified ripple-ui, single-file ESM bundle for reproducible use of the AnEntrypoint design.",
5
5
  "type": "module",
6
6
  "main": "./dist/247420.js",
@@ -19,6 +19,7 @@ import {
19
19
  lintTransitionAllOrThrow,
20
20
  lintDarkParityOrThrow,
21
21
  lintImportantOrThrow,
22
+ lintTokensJsonInSyncOrThrow,
22
23
  } from './lint-tokens.mjs';
23
24
  import { lintGlyphsOrThrow } from './lint-glyphs.mjs';
24
25
  import { lintNullChildrenOrThrow } from './lint-null-children.mjs';
@@ -42,6 +43,13 @@ import { lintDeadControlsOrThrow } from './lint-dead-controls.mjs';
42
43
  // failed check. Anything that can fail belongs in CHECKS.
43
44
  const CHECKS = [
44
45
  ['tokens', lintTokensOrThrow],
46
+ // colors_and_type.css and tokens.json are two sources of truth for the same
47
+ // custom properties, so changing one alone is a half-change. This ran only
48
+ // from build.mjs, which let `npm run lint` report every check green while
49
+ // the build was broken -- a layout fix sat on main unpublished for an hour
50
+ // because the failing Build step also failed the publish workflow. Same
51
+ // coverage-hole shape as the rest of this list: a gate nothing invokes.
52
+ ['tokens-json', lintTokensJsonInSyncOrThrow],
45
53
  ['radius', lintRadiusOrThrow],
46
54
  ['zindex', lintZIndexOrThrow],
47
55
  ['transition-all', lintTransitionAllOrThrow],