Skip to content

Commit 4e74a96

Browse files
authored
chore: promote staging to main — 3 new health dimensions + 4 bug fixes
Features: CEM-Source Fidelity analyzer, Slot Architecture analyzer, Naming Convention Consistency analyzer, Cross-Library Benchmark Suite. Bug fixes: carousel event, skeleton/spinner drift, tabs drift, CEM sync gate. 14-dimension scoring model complete.
2 parents a5beebe + 1ca353f commit 4e74a96

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+23397
-2230
lines changed

.changeset/carousel-event-fix.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'helixir': patch
3+
---
4+
5+
fix: correct CEM carousel event name from hx-slide-change to hx-slide

.changeset/cem-source-fidelity.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'helixir': minor
3+
---
4+
5+
feat: add CEM-Source Fidelity analyzer to cross-reference CEM declarations against actual source code

.changeset/cem-sync-gate.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'helixir': minor
3+
---
4+
5+
feat: add automated CEM sync CI gate to prevent stale published manifests
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'helixir': minor
3+
---
4+
5+
feat: add cross-library benchmark suite to validate scorer against 11 real WC libraries and generate helix report
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'helixir': patch
3+
---
4+
5+
fix: correct HxSkeletonAttributes and HxSpinnerAttributes property drift in helix.d.ts

.changeset/fix-tabs-type-drift.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'helixir': patch
3+
---
4+
5+
fix: correct HxTabsAttributes properties drift from CEM
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'helixir': minor
3+
---
4+
5+
feat: add Naming Consistency analyzer to measure library-wide naming convention adherence
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'helixir': patch
3+
---
4+
5+
fix: correct HxSkeletonAttributes and HxSpinnerAttributes property drift from CEM
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'helixir': minor
3+
---
4+
5+
feat: add Slot Architecture analyzer to score slot documentation, type constraints, and slot-property coherence

.github/workflows/cem-validate.yml

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: CEM Validate
2+
3+
on:
4+
push:
5+
branches: [main, dev, staging]
6+
pull_request:
7+
branches: [main, dev, staging]
8+
9+
jobs:
10+
cem-validate:
11+
runs-on: ubuntu-latest
12+
timeout-minutes: 10
13+
14+
steps:
15+
- uses: actions/checkout@v4
16+
17+
- uses: pnpm/action-setup@v4
18+
with:
19+
version: '>=9'
20+
21+
- uses: actions/setup-node@v4
22+
with:
23+
node-version: '20'
24+
cache: 'pnpm'
25+
26+
- name: Install dependencies
27+
run: pnpm install --frozen-lockfile
28+
29+
- name: Regenerate CEM from source
30+
run: pnpm run cem:generate
31+
32+
- name: Verify CEM is up to date
33+
run: |
34+
if ! git diff --exit-code custom-elements.json; then
35+
echo "::error::custom-elements.json is stale. Run 'pnpm run cem:generate' locally and commit the updated file."
36+
exit 1
37+
fi

0 commit comments

Comments
 (0)