@private @method _getFileInfos @param {Array} files @param {String} intoDir @param {Object} templateVariables @param {Object} options @return {Array} file infos
(files, intoDir, templateVariables, options)
| 834 | @return {Array} file infos |
| 835 | */ |
| 836 | _getFileInfos(files, intoDir, templateVariables, options) { |
| 837 | return files |
| 838 | .map((file) => this.buildFileInfo.call(this, intoDir, templateVariables, file, options)) |
| 839 | .filter(Boolean); |
| 840 | }, |
| 841 | |
| 842 | /** |
| 843 | Add update files to ignored files or reset them |
nothing calls this directly
no test coverage detected
searching dependent graphs…