@html-validate/commitlint-config 3.4.2 → 3.4.4
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 +1081 -671
- package/dist/install.js +6 -1
- package/package.json +1 -1
package/dist/install.js
CHANGED
|
@@ -122,6 +122,11 @@ var require_vendors = __commonJS({
|
|
|
122
122
|
env: "CIRRUS_CI",
|
|
123
123
|
pr: "CIRRUS_PR"
|
|
124
124
|
},
|
|
125
|
+
{
|
|
126
|
+
name: "Cloudflare Pages",
|
|
127
|
+
constant: "CLOUDFLARE_PAGES",
|
|
128
|
+
env: "CF_PAGES"
|
|
129
|
+
},
|
|
125
130
|
{
|
|
126
131
|
name: "Codefresh",
|
|
127
132
|
constant: "CODEFRESH",
|
|
@@ -416,7 +421,7 @@ var require_ci_info = __commonJS({
|
|
|
416
421
|
exports.isCI = !!(env.CI !== "false" && // Bypass all checks if CI env is explicitly set to 'false'
|
|
417
422
|
(env.BUILD_ID || // Jenkins, Cloudbees
|
|
418
423
|
env.BUILD_NUMBER || // Jenkins, TeamCity
|
|
419
|
-
env.CI || // Travis CI, CircleCI, Cirrus CI, Gitlab CI, Appveyor, CodeShip, dsari
|
|
424
|
+
env.CI || // Travis CI, CircleCI, Cirrus CI, Gitlab CI, Appveyor, CodeShip, dsari, Cloudflare Pages
|
|
420
425
|
env.CI_APP_ID || // Appflow
|
|
421
426
|
env.CI_BUILD_ID || // Appflow
|
|
422
427
|
env.CI_BUILD_NUMBER || // Appflow
|