sh-ui-cli 0.23.0 → 0.23.1

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.
@@ -2,6 +2,18 @@
2
2
  "$schema": "https://json-schema.org/draft/2020-12/schema",
3
3
  "$description": "sh-ui 릴리즈 노트 단일 소스. docs(React)와 showcase(Flutter)가 함께 읽는다. 새 릴리즈마다 맨 앞에 추가.",
4
4
  "versions": [
5
+ {
6
+ "version": "0.23.1",
7
+ "date": "2026-04-28",
8
+ "title": "sh-ui-create 패키지 완전 삭제 — 단일 sh-ui-cli",
9
+ "type": "patch",
10
+ "highlights": [
11
+ "베타 단계라 sh-ui-create 사용자가 없으므로 deprecate shim 도 폐기 — packages/create 디렉토리 + npm 의 sh-ui-create 패키지 둘 다 정리",
12
+ "publish workflow 매트릭스에서 create 제거 — 앞으로 sh-ui-cli 만 발행",
13
+ "문서 일괄 갱신: README, getting-started, CLI 레퍼런스, 플레이그라운드 명령 컴포저 모두 `npx sh-ui-cli create` 로 통일"
14
+ ],
15
+ "url": "https://github.com/sanghyeonKim0201/sh-ui/releases/tag/v0.23.1"
16
+ },
5
17
  {
6
18
  "version": "0.23.0",
7
19
  "date": "2026-04-28",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sh-ui-cli",
3
- "version": "0.23.0",
3
+ "version": "0.23.1",
4
4
  "description": "sh-ui CLI — 프로젝트 스캐폴드(create) + 컴포넌트 추가(add/list/remove) + IDE-내 AI용 MCP 서버",
5
5
  "license": "MIT",
6
6
  "repository": {
package/src/mcp.mjs CHANGED
@@ -135,7 +135,7 @@ const SERVER_INSTRUCTIONS = `sh-ui — Base UI 위에 빌드된 React/Flutter
135
135
 
136
136
  export async function startMcpServer() {
137
137
  const server = new McpServer(
138
- { name: "sh-ui", version: "0.23.0" }, // sh-ui-cli 와 동기화
138
+ { name: "sh-ui", version: "0.23.1" }, // sh-ui-cli 와 동기화
139
139
  {
140
140
  capabilities: { tools: {} },
141
141
  instructions: SERVER_INSTRUCTIONS,