From c9627d23a6fce6f78f03c0a107728c42af3c744e Mon Sep 17 00:00:00 2001 From: Eelco Hillenius Date: Sun, 15 Feb 2026 20:25:49 -0800 Subject: [PATCH 1/3] fix: align changesets ignore list with current workspace Remove stale and conflicting ignored package entries so changeset validation passes during release workflows. Co-authored-by: Cursor --- .changeset/config.json | 36 +----------------------------------- 1 file changed, 1 insertion(+), 35 deletions(-) diff --git a/.changeset/config.json b/.changeset/config.json index 9b2317e3..1299196b 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -8,42 +8,8 @@ "baseBranch": "main", "updateInternalDependencies": "patch", "ignore": [ - "@pie-examples/react", - "@pie-examples/svelte", "esm-player-test", - "@pie-wc/multiple-choice", - "@pie-element/hotspot", - "@pie-element/number-line", - "@pie-element/multiple-choice", "@pie-element/math-inline", - "@pie-element/math-templated", - "@pie-lib/categorize", - "@pie-lib/charting", - "@pie-lib/config-ui", - "@pie-lib/controller-utils", - "@pie-lib/correct-answer-toggle", - "@pie-lib/demo", - "@pie-lib/drag", - "@pie-lib/editable-html", - "@pie-lib/feedback", - "@pie-lib/graphing", - "@pie-lib/graphing-solution-set", - "@pie-lib/graphing-utils", - "@pie-lib/icons", - "@pie-lib/mask-markup", - "@pie-lib/math-evaluator", - "@pie-lib/math-input", - "@pie-lib/math-rendering", - "@pie-lib/math-rendering-accessible", - "@pie-lib/math-toolbar", - "@pie-lib/plot", - "@pie-lib/render-ui", - "@pie-lib/rubric", - "@pie-lib/scoring-config", - "@pie-lib/style-utils", - "@pie-lib/test-utils", - "@pie-lib/text-select", - "@pie-lib/tools", - "@pie-lib/translator" + "@pie-element/math-templated" ] } From d35bee948b3a83feefbf17cc80ecf63289c6c1ec Mon Sep 17 00:00:00 2001 From: Eelco Hillenius Date: Sun, 15 Feb 2026 20:29:37 -0800 Subject: [PATCH 2/3] fix: satisfy biome formatting for changeset config Apply canonical JSON formatting for the changesets ignore list so CI lint checks pass on PR #2. Co-authored-by: Cursor --- .changeset/config.json | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.changeset/config.json b/.changeset/config.json index 1299196b..5f4cb77c 100644 --- a/.changeset/config.json +++ b/.changeset/config.json @@ -7,9 +7,5 @@ "access": "public", "baseBranch": "main", "updateInternalDependencies": "patch", - "ignore": [ - "esm-player-test", - "@pie-element/math-inline", - "@pie-element/math-templated" - ] + "ignore": ["esm-player-test", "@pie-element/math-inline", "@pie-element/math-templated"] } From 58df36117ecf516c684d6249e1603d87f7301d48 Mon Sep 17 00:00:00 2001 From: Eelco Hillenius Date: Sun, 15 Feb 2026 20:36:13 -0800 Subject: [PATCH 3/3] chore: exclude changesets from biome checks Ignore .changeset metadata files in Biome so release notes are not blocked by formatting rules. Co-authored-by: Cursor --- biome.json | 1 + 1 file changed, 1 insertion(+) diff --git a/biome.json b/biome.json index a13b7977..33dcd7fb 100644 --- a/biome.json +++ b/biome.json @@ -16,6 +16,7 @@ "!**/.turbo", "!**/coverage", "!**/.svelte-kit", + "!**/.changeset", "!**/packages/apps/examples", "!**/packages/lib-svelte/config-ui", "!**/packages/elements-svelte/multiple-choice/src/configure",