@simplysm/sd-cli 12.15.67 → 12.15.68
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.
|
@@ -18,6 +18,7 @@ export class SdCliAiCommand {
|
|
|
18
18
|
"--find-renames",
|
|
19
19
|
"--find-copies",
|
|
20
20
|
"--diff-algorithm=histogram",
|
|
21
|
+
"--diff-filter=d",
|
|
21
22
|
"--",
|
|
22
23
|
".",
|
|
23
24
|
`:(exclude).*`,
|
|
@@ -27,6 +28,13 @@ export class SdCliAiCommand {
|
|
|
27
28
|
`:(exclude)packages/*/styles.css`,
|
|
28
29
|
`:(exclude)*.map`,
|
|
29
30
|
]);
|
|
31
|
+
// 삭제된 파일 목록만 따로
|
|
32
|
+
const deleted = await SdProcess.spawnAsync("git", [
|
|
33
|
+
"diff",
|
|
34
|
+
"--staged",
|
|
35
|
+
"--name-only",
|
|
36
|
+
"--diff-filter=D",
|
|
37
|
+
]);
|
|
30
38
|
if (StringUtils.isNullOrEmpty(diff.trim())) {
|
|
31
39
|
throw new Error("변경사항이 없습니다.");
|
|
32
40
|
}
|
|
@@ -63,7 +71,11 @@ ${stat}
|
|
|
63
71
|
|
|
64
72
|
<diff>
|
|
65
73
|
${diff}
|
|
66
|
-
</diff
|
|
74
|
+
</diff>
|
|
75
|
+
|
|
76
|
+
<deleted_files>
|
|
77
|
+
${deleted.trim() || "없음"}
|
|
78
|
+
</deleted_files>`,
|
|
67
79
|
},
|
|
68
80
|
],
|
|
69
81
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplysm/sd-cli",
|
|
3
|
-
"version": "12.15.
|
|
3
|
+
"version": "12.15.68",
|
|
4
4
|
"description": "심플리즘 패키지 - CLI",
|
|
5
5
|
"author": "김석래",
|
|
6
6
|
"repository": {
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"@angular/compiler-cli": "^20.3.15",
|
|
18
18
|
"@anthropic-ai/sdk": "^0.71.2",
|
|
19
19
|
"@electron/rebuild": "^4.0.2",
|
|
20
|
-
"@simplysm/sd-core-common": "12.15.
|
|
21
|
-
"@simplysm/sd-core-node": "12.15.
|
|
22
|
-
"@simplysm/sd-service-server": "12.15.
|
|
23
|
-
"@simplysm/sd-storage": "12.15.
|
|
20
|
+
"@simplysm/sd-core-common": "12.15.68",
|
|
21
|
+
"@simplysm/sd-core-node": "12.15.68",
|
|
22
|
+
"@simplysm/sd-service-server": "12.15.68",
|
|
23
|
+
"@simplysm/sd-storage": "12.15.68",
|
|
24
24
|
"browserslist": "^4.28.1",
|
|
25
25
|
"cordova": "^13.0.0",
|
|
26
26
|
"electron": "^33.4.11",
|
|
@@ -22,6 +22,7 @@ export class SdCliAiCommand {
|
|
|
22
22
|
"--find-renames",
|
|
23
23
|
"--find-copies",
|
|
24
24
|
"--diff-algorithm=histogram",
|
|
25
|
+
"--diff-filter=d",
|
|
25
26
|
"--",
|
|
26
27
|
".",
|
|
27
28
|
`:(exclude).*`,
|
|
@@ -32,6 +33,14 @@ export class SdCliAiCommand {
|
|
|
32
33
|
`:(exclude)*.map`,
|
|
33
34
|
]);
|
|
34
35
|
|
|
36
|
+
// 삭제된 파일 목록만 따로
|
|
37
|
+
const deleted = await SdProcess.spawnAsync("git", [
|
|
38
|
+
"diff",
|
|
39
|
+
"--staged",
|
|
40
|
+
"--name-only",
|
|
41
|
+
"--diff-filter=D",
|
|
42
|
+
]);
|
|
43
|
+
|
|
35
44
|
if (StringUtils.isNullOrEmpty(diff.trim())) {
|
|
36
45
|
throw new Error("변경사항이 없습니다.");
|
|
37
46
|
}
|
|
@@ -70,7 +79,11 @@ ${stat}
|
|
|
70
79
|
|
|
71
80
|
<diff>
|
|
72
81
|
${diff}
|
|
73
|
-
</diff
|
|
82
|
+
</diff>
|
|
83
|
+
|
|
84
|
+
<deleted_files>
|
|
85
|
+
${deleted.trim() || "없음"}
|
|
86
|
+
</deleted_files>`,
|
|
74
87
|
},
|
|
75
88
|
],
|
|
76
89
|
});
|