gityo 1.0.8 → 1.0.9
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 +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -197903,7 +197903,7 @@ const commitMessageInputPrompt = createPrompt((config$4, done) => {
|
|
|
197903
197903
|
const header = `${status === "done" ? source_default.green("✓") : source_default.blue("?")} ${(status === "done" ? source_default.green : source_default.blue)(config$4.message)}`;
|
|
197904
197904
|
if (status === "done") {
|
|
197905
197905
|
if (value.length === 0) return header;
|
|
197906
|
-
return `${header}\n${source_default.cyan.dim(value)}
|
|
197906
|
+
return `${header}\n${source_default.cyan.dim(value)}`;
|
|
197907
197907
|
}
|
|
197908
197908
|
return `${header}\n${inputPrefix}${value}`;
|
|
197909
197909
|
});
|