From cb66c2f0788d382da1dabd06a094c0bc6ed3e26a Mon Sep 17 00:00:00 2001 From: MaksimZhukov Date: Tue, 31 Oct 2023 13:39:41 +0100 Subject: [PATCH] Update dist --- dist/index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/dist/index.js b/dist/index.js index 947c61fa..e30ac113 100644 --- a/dist/index.js +++ b/dist/index.js @@ -683,7 +683,7 @@ function checkAllChangedFiles(changedFiles, globPatternsConfigs, dot) { } exports.checkAllChangedFiles = checkAllChangedFiles; function checkIfAnyGlobMatchesAnyFile(changedFiles, globs, dot) { - core.debug(` checking "anyGlobToAnyFile" config patterns`); + core.debug(` checking "any-glob-to-any-file" config patterns`); const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot })); for (const matcher of matchers) { const matchedFile = changedFiles.find(changedFile => { @@ -700,7 +700,7 @@ function checkIfAnyGlobMatchesAnyFile(changedFiles, globs, dot) { } exports.checkIfAnyGlobMatchesAnyFile = checkIfAnyGlobMatchesAnyFile; function checkIfAllGlobsMatchAnyFile(changedFiles, globs, dot) { - core.debug(` checking "allGlobsToAnyFile" config patterns`); + core.debug(` checking "all-globs-to-any-file" config patterns`); const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot })); for (const changedFile of changedFiles) { const mismatchedGlob = matchers.find(matcher => { @@ -719,7 +719,7 @@ function checkIfAllGlobsMatchAnyFile(changedFiles, globs, dot) { } exports.checkIfAllGlobsMatchAnyFile = checkIfAllGlobsMatchAnyFile; function checkIfAnyGlobMatchesAllFiles(changedFiles, globs, dot) { - core.debug(` checking "anyGlobToAllFiles" config patterns`); + core.debug(` checking "any-glob-to-all-files" config patterns`); const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot })); for (const matcher of matchers) { const mismatchedFile = changedFiles.find(changedFile => { @@ -738,7 +738,7 @@ function checkIfAnyGlobMatchesAllFiles(changedFiles, globs, dot) { } exports.checkIfAnyGlobMatchesAllFiles = checkIfAnyGlobMatchesAllFiles; function checkIfAllGlobsMatchAllFiles(changedFiles, globs, dot) { - core.debug(` checking "allGlobsToAllFiles" config patterns`); + core.debug(` checking "all-globs-to-all-files" config patterns`); const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot })); for (const changedFile of changedFiles) { const mismatchedGlob = matchers.find(matcher => {