Skip to content

Commit cb66c2f

Browse files
committed
Update dist
1 parent 9181355 commit cb66c2f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

dist/index.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -683,7 +683,7 @@ function checkAllChangedFiles(changedFiles, globPatternsConfigs, dot) {
683683
}
684684
exports.checkAllChangedFiles = checkAllChangedFiles;
685685
function checkIfAnyGlobMatchesAnyFile(changedFiles, globs, dot) {
686-
core.debug(` checking "anyGlobToAnyFile" config patterns`);
686+
core.debug(` checking "any-glob-to-any-file" config patterns`);
687687
const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot }));
688688
for (const matcher of matchers) {
689689
const matchedFile = changedFiles.find(changedFile => {
@@ -700,7 +700,7 @@ function checkIfAnyGlobMatchesAnyFile(changedFiles, globs, dot) {
700700
}
701701
exports.checkIfAnyGlobMatchesAnyFile = checkIfAnyGlobMatchesAnyFile;
702702
function checkIfAllGlobsMatchAnyFile(changedFiles, globs, dot) {
703-
core.debug(` checking "allGlobsToAnyFile" config patterns`);
703+
core.debug(` checking "all-globs-to-any-file" config patterns`);
704704
const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot }));
705705
for (const changedFile of changedFiles) {
706706
const mismatchedGlob = matchers.find(matcher => {
@@ -719,7 +719,7 @@ function checkIfAllGlobsMatchAnyFile(changedFiles, globs, dot) {
719719
}
720720
exports.checkIfAllGlobsMatchAnyFile = checkIfAllGlobsMatchAnyFile;
721721
function checkIfAnyGlobMatchesAllFiles(changedFiles, globs, dot) {
722-
core.debug(` checking "anyGlobToAllFiles" config patterns`);
722+
core.debug(` checking "any-glob-to-all-files" config patterns`);
723723
const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot }));
724724
for (const matcher of matchers) {
725725
const mismatchedFile = changedFiles.find(changedFile => {
@@ -738,7 +738,7 @@ function checkIfAnyGlobMatchesAllFiles(changedFiles, globs, dot) {
738738
}
739739
exports.checkIfAnyGlobMatchesAllFiles = checkIfAnyGlobMatchesAllFiles;
740740
function checkIfAllGlobsMatchAllFiles(changedFiles, globs, dot) {
741-
core.debug(` checking "allGlobsToAllFiles" config patterns`);
741+
core.debug(` checking "all-globs-to-all-files" config patterns`);
742742
const matchers = globs.map(g => new minimatch_1.Minimatch(g, { dot }));
743743
for (const changedFile of changedFiles) {
744744
const mismatchedGlob = matchers.find(matcher => {

0 commit comments

Comments
 (0)