@html-validate/commitlint-config 3.4.1 → 3.4.3
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/commitlint.js +1554 -1047
- package/dist/formatter.js +2 -2
- package/package.json +1 -1
package/dist/formatter.js
CHANGED
|
@@ -267,10 +267,10 @@ function _supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) {
|
|
|
267
267
|
return 1;
|
|
268
268
|
}
|
|
269
269
|
if ("CI" in env) {
|
|
270
|
-
if ("GITHUB_ACTIONS"
|
|
270
|
+
if (["GITHUB_ACTIONS", "GITEA_ACTIONS", "CIRCLECI"].some((key) => key in env)) {
|
|
271
271
|
return 3;
|
|
272
272
|
}
|
|
273
|
-
if (["TRAVIS", "
|
|
273
|
+
if (["TRAVIS", "APPVEYOR", "GITLAB_CI", "BUILDKITE", "DRONE"].some((sign) => sign in env) || env.CI_NAME === "codeship") {
|
|
274
274
|
return 1;
|
|
275
275
|
}
|
|
276
276
|
return min;
|