@kodocagent/cli 0.4.1 → 0.4.2

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.
package/dist/index.js CHANGED
@@ -10775,7 +10775,12 @@ var ToolRegistry = class {
10775
10775
  return `\uC0AC\uC6A9\uC790\uAC00 \uBCC0\uACBD\uC744 \uAC70\uC808\uD558\uC5EC \uC800\uC7A5\uD558\uC9C0 \uC54A\uC558\uC2B5\uB2C8\uB2E4${reasonPart}. \uAC19\uC740 \uC218\uC815\uC548\uC744 \uC790\uB3D9\uC73C\uB85C \uB2E4\uC2DC \uC81C\uC548\uD558\uC9C0 \uB9D0\uACE0, \uC0AC\uC6A9\uC790\uC758 \uB2E4\uC74C \uC9C0\uC2DC\uB97C \uAE30\uB2E4\uB9AC\uC138\uC694.`;
10776
10776
  }
10777
10777
  try {
10778
- return await commit();
10778
+ const commitMsg = await commit();
10779
+ if (proposal.warnings && proposal.warnings.length > 0) {
10780
+ return `${commitMsg}
10781
+ [\uACBD\uACE0] ${proposal.warnings.join("\n[\uACBD\uACE0] ")}`;
10782
+ }
10783
+ return commitMsg;
10779
10784
  } catch (err) {
10780
10785
  const msg = err instanceof Error ? err.message : String(err);
10781
10786
  return `\uC800\uC7A5 \uC624\uB958: ${msg}`;