@private @method _checkForNoMatch @param {Array} fileInfos @param {String} rawArgs
(fileInfos, rawArgs)
| 872 | @param {String} rawArgs |
| 873 | */ |
| 874 | _checkForNoMatch(fileInfos, rawArgs) { |
| 875 | if (fileInfos.filter(isFilePath).length < 1 && rawArgs) { |
| 876 | this.ui.writeLine( |
| 877 | chalk.yellow(`The globPattern "${rawArgs}" ` + `did not match any files, so no file updates will be made.`) |
| 878 | ); |
| 879 | } |
| 880 | }, |
| 881 | |
| 882 | /** |
| 883 | @method processFiles |
nothing calls this directly
no test coverage detected
searching dependent graphs…