@simplysm/sd-cli 12.16.29 → 12.16.30
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.
|
@@ -226,6 +226,9 @@ export class SdCliProject {
|
|
|
226
226
|
projConf,
|
|
227
227
|
});
|
|
228
228
|
this._logging(messages, logger);
|
|
229
|
+
if (messages.some((m) => m.severity === "error")) {
|
|
230
|
+
throw new Error("빌드 중 오류가 있습니다.");
|
|
231
|
+
}
|
|
229
232
|
}
|
|
230
233
|
catch (err) {
|
|
231
234
|
await SdProcess.spawnAsync("git", ["checkout", "."]);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplysm/sd-cli",
|
|
3
|
-
"version": "12.16.
|
|
3
|
+
"version": "12.16.30",
|
|
4
4
|
"description": "심플리즘 패키지 - CLI",
|
|
5
5
|
"author": "김석래",
|
|
6
6
|
"repository": {
|
|
@@ -17,10 +17,10 @@
|
|
|
17
17
|
"@angular/compiler-cli": "^20.3.18",
|
|
18
18
|
"@anthropic-ai/sdk": "^0.78.0",
|
|
19
19
|
"@electron/rebuild": "^4.0.3",
|
|
20
|
-
"@simplysm/sd-core-common": "12.16.
|
|
21
|
-
"@simplysm/sd-core-node": "12.16.
|
|
22
|
-
"@simplysm/sd-service-server": "12.16.
|
|
23
|
-
"@simplysm/sd-storage": "12.16.
|
|
20
|
+
"@simplysm/sd-core-common": "12.16.30",
|
|
21
|
+
"@simplysm/sd-core-node": "12.16.30",
|
|
22
|
+
"@simplysm/sd-service-server": "12.16.30",
|
|
23
|
+
"@simplysm/sd-storage": "12.16.30",
|
|
24
24
|
"browserslist": "^4.28.1",
|
|
25
25
|
"cordova": "^13.0.0",
|
|
26
26
|
"electron": "^33.4.11",
|
|
@@ -304,6 +304,10 @@ export class SdCliProject {
|
|
|
304
304
|
});
|
|
305
305
|
|
|
306
306
|
this._logging(messages, logger);
|
|
307
|
+
|
|
308
|
+
if (messages.some((m) => m.severity === "error")) {
|
|
309
|
+
throw new Error("빌드 중 오류가 있습니다.");
|
|
310
|
+
}
|
|
307
311
|
} catch (err) {
|
|
308
312
|
await SdProcess.spawnAsync("git", ["checkout", "."]);
|
|
309
313
|
throw err;
|