sh-ui-cli 0.74.0 → 0.74.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,19 @@
|
|
|
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.74.1",
|
|
7
|
+
"date": "2026-05-11",
|
|
8
|
+
"title": "patch — apps/* templates 에 `@workspace/ui-core` 의존성/paths 누락 수정",
|
|
9
|
+
"type": "patch",
|
|
10
|
+
"highlights": [
|
|
11
|
+
"**templates 의 apps/* 가 ui-core 를 의존성으로 들고 있지 않던 회귀 수정** — v0.65 에서 컴포넌트 SoT 가 `ui-core` 로 이동했지만 `nextjs-app/package.json` 과 `_arch/{fsd,flat}/tsconfig.json`, `vitest.config.ts` 가 `@workspace/ui-app-name` 만 가리키고 `@workspace/ui-core` 는 박혀 있지 않았음. 결과: 사용자가 ui-core 컴포넌트(`@workspace/ui-core/components/sidebar` 등)를 import 하려면 매번 손으로 deps + tsconfig paths 추가해야 했음.",
|
|
12
|
+
"**fix 후 신규 스캐폴드/`sh_ui_add_app` 의 새 앱이 자동으로 ui-core dep + paths 보유** — `pnpm install` 하자마자 `@workspace/ui-core/components/*` import 동작.",
|
|
13
|
+
"**smoke scenario 2 회귀 가드** — `appPkg.dependencies['@workspace/ui-core']` 와 `tsconfig.compilerOptions.paths['@workspace/ui-core/*']` 단언 추가.",
|
|
14
|
+
"**`pretest` 훅으로 stale bundled data 자동 갱신** — `packages/cli/data/` 는 gitignored 라 개발자 머신에서 stale 일 수 있고, 그 상태에서 `pnpm test` 돌리면 `tokens-validate.test.js` 1건이 `tokens-used.json` 누락으로 false-fail 했음. `pretest` 가 `copy-data.mjs` 를 자동 실행해 회귀 차단."
|
|
15
|
+
],
|
|
16
|
+
"url": "https://github.com/sanghyeonKim0201/sh-ui/releases/tag/v0.74.1"
|
|
17
|
+
},
|
|
5
18
|
{
|
|
6
19
|
"version": "0.74.0",
|
|
7
20
|
"date": "2026-05-10",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sh-ui-cli",
|
|
3
|
-
"version": "0.74.
|
|
3
|
+
"version": "0.74.1",
|
|
4
4
|
"description": "sh-ui CLI — 프로젝트 스캐폴드(create) + 컴포넌트 추가(add/list/remove) + IDE-내 AI용 MCP 서버",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -48,6 +48,7 @@
|
|
|
48
48
|
},
|
|
49
49
|
"scripts": {
|
|
50
50
|
"bundle-data": "node scripts/copy-data.mjs",
|
|
51
|
+
"pretest": "node scripts/copy-data.mjs",
|
|
51
52
|
"test": "vitest run",
|
|
52
53
|
"prepublishOnly": "node scripts/copy-data.mjs && node --check bin/sh-ui.mjs"
|
|
53
54
|
},
|
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
"paths": {
|
|
6
6
|
"@/lib/*": ["./lib/*"],
|
|
7
7
|
"@/components/*": ["./components/*"],
|
|
8
|
-
"@workspace/ui-app-name/*": ["../../packages/ui/ui-apps/ui-app-name/src/*"]
|
|
8
|
+
"@workspace/ui-app-name/*": ["../../packages/ui/ui-apps/ui-app-name/src/*"],
|
|
9
|
+
"@workspace/ui-core/*": ["../../packages/ui/ui-core/src/*"]
|
|
9
10
|
},
|
|
10
11
|
"plugins": [
|
|
11
12
|
{
|
|
@@ -4,7 +4,8 @@
|
|
|
4
4
|
"baseUrl": ".",
|
|
5
5
|
"paths": {
|
|
6
6
|
"@/*": ["./*"],
|
|
7
|
-
"@workspace/ui-app-name/*": ["../../packages/ui/ui-apps/ui-app-name/src/*"]
|
|
7
|
+
"@workspace/ui-app-name/*": ["../../packages/ui/ui-apps/ui-app-name/src/*"],
|
|
8
|
+
"@workspace/ui-core/*": ["../../packages/ui/ui-core/src/*"]
|
|
8
9
|
},
|
|
9
10
|
"plugins": [
|
|
10
11
|
{
|