@forsakringskassan/commitlint-config 1.3.1 → 1.3.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/format.js +1 -2
- package/package.json +1 -1
package/dist/format.js
CHANGED
|
@@ -513,8 +513,7 @@ function formatInput(result, options = {}) {
|
|
|
513
513
|
}
|
|
514
514
|
const sign = "\u29D7";
|
|
515
515
|
const decoration = enabled ? source_default.gray(sign) : sign;
|
|
516
|
-
const
|
|
517
|
-
const decoratedInput = enabled ? source_default.bold(commitText) : commitText;
|
|
516
|
+
const decoratedInput = enabled ? source_default.bold(input) : input;
|
|
518
517
|
const hasProblems = errors.length > 0 || warnings.length > 0;
|
|
519
518
|
return options.verbose || hasProblems ? [`${decoration} input: ${decoratedInput}`] : [];
|
|
520
519
|
}
|