* 处理数据 * @param {string} key 键名 * @param {Object} data 要处理的数据
(key, data)
| 205 | } else if (entry.isDirectory()) { |
| 206 | await this.readFiles(fullPath, false); |
| 207 | } |
| 208 | } |
| 209 | |
| 210 | if (first) { |
| 211 | await this.processSubpackages(); |
| 212 | await this.processJsonFiles(); |
| 213 | } |
| 214 | } catch (err) { |
| 215 | logger.error(`读取目录 ${filePath} 时出错:`, err); |
| 216 | throw err; |
| 217 | } |
| 218 | }, |
nothing calls this directly
no outgoing calls
no test coverage detected