Skip to content

Commit 7512d84

Browse files
author
Gabi
committed
fix: move extra-files into packages config for release-please
release-please with release-type: simple ignores top-level extra-files when packages is defined. Moved extra-files into packages."." so package.json, plugin.json, and marketplace.json get version-bumped. Also synced all version files to 1.6.2 to match manifest.
1 parent dc78edd commit 7512d84

4 files changed

Lines changed: 22 additions & 21 deletions

File tree

.claude-plugin/marketplace.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
},
66
"metadata": {
77
"description": "The Claude Code plugin that turns Stitch into a full development workflow — prompt engineering, all 14 MCP wrappers, design tokens, design systems, and production-ready components for Next.js, Svelte, React, React Native, SwiftUI, and HTML.",
8-
"version": "1.6.0"
8+
"version": "1.6.2"
99
},
1010
"plugins": [
1111
{

.claude-plugin/plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "stitch-kit",
33
"description": "AI UI design to production code — Stitch MCP skills for Claude Code. Generates screens, extracts design tokens, and converts to Next.js, Svelte, React, React Native, SwiftUI, or HTML.",
4-
"version": "1.6.0",
4+
"version": "1.6.2",
55
"author": {
66
"name": "gabelul"
77
},

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@booplex/stitch-kit",
3-
"version": "1.6.0",
3+
"version": "1.6.2",
44
"description": "AI UI design to production code — Stitch MCP skills for Claude Code and Codex CLI. Generates screens, iterates designs, extracts tokens, converts to Next.js, Svelte, React, React Native, SwiftUI, or HTML.",
55
"bin": {
66
"stitch-kit": "./bin/stitch-kit.mjs"

release-please-config.json

Lines changed: 19 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -10,24 +10,25 @@
1010
{ "type": "refactor", "section": "Improvements", "hidden": false },
1111
{ "type": "chore", "section": "Maintenance", "hidden": true }
1212
],
13-
"extra-files": [
14-
{
15-
"type": "json",
16-
"path": "package.json",
17-
"jsonpath": "$.version"
18-
},
19-
{
20-
"type": "json",
21-
"path": ".claude-plugin/plugin.json",
22-
"jsonpath": "$.version"
23-
},
24-
{
25-
"type": "json",
26-
"path": ".claude-plugin/marketplace.json",
27-
"jsonpath": "$.metadata.version"
28-
}
29-
],
3013
"packages": {
31-
".": {}
14+
".": {
15+
"extra-files": [
16+
{
17+
"type": "json",
18+
"path": "package.json",
19+
"jsonpath": "$.version"
20+
},
21+
{
22+
"type": "json",
23+
"path": ".claude-plugin/plugin.json",
24+
"jsonpath": "$.version"
25+
},
26+
{
27+
"type": "json",
28+
"path": ".claude-plugin/marketplace.json",
29+
"jsonpath": "$.metadata.version"
30+
}
31+
]
32+
}
3233
}
3334
}

0 commit comments

Comments
 (0)