Skip to content

Commit 8d342f8

Browse files
aid-ninjaclaude
andcommitted
fix(ci): biome-format plugin JSON after sync-version
sync-version.js output didn't match biome's preferred JSON formatting for the plugin.json + marketplace.json arrays, so CI's biome lint failed on every version bump. Fix: 1. One-shot: reformat the current plugin.json + marketplace.json 2. Permanent: extend the 'version' npm script to run biome format after sync-version, so future bumps stay green Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
1 parent e14f58d commit 8d342f8

3 files changed

Lines changed: 3 additions & 11 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,7 @@
2323
"homepage": "https://grainulator.app",
2424
"repository": "https://github.com/grainulation/grainulator",
2525
"license": "MIT",
26-
"keywords": [
27-
"research",
28-
"wheat",
29-
"claims",
30-
"evidence",
31-
"briefs"
32-
],
26+
"keywords": ["research", "wheat", "claims", "evidence", "briefs"],
3327
"category": "research",
3428
"tags": [
3529
"research-sprints",

.claude-plugin/plugin.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,7 @@
77
},
88
"homepage": "https://grainulator.app",
99
"skills": "./skills/",
10-
"agents": [
11-
"./agents/grainulator.md"
12-
],
10+
"agents": ["./agents/grainulator.md"],
1311
"mcpServers": "./.mcp.json",
1412
"userConfig": {
1513
"tips_level": {

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
"test:e2e": "GRAINULATOR_SITE_DIR=\"$PWD/site\" npm run e2e:grainulator --prefix ../ranch",
3535
"test:all": "npm test && npm run test:e2e",
3636
"sync-version": "node scripts/sync-version.js",
37-
"version": "node scripts/sync-version.js && git add .claude-plugin/plugin.json .claude-plugin/marketplace.json"
37+
"version": "node scripts/sync-version.js && npx --yes @biomejs/biome format --write .claude-plugin/ && git add .claude-plugin/plugin.json .claude-plugin/marketplace.json"
3838
},
3939
"engines": {
4040
"node": ">=20"

0 commit comments

Comments
 (0)