(filePath)
| 211 | const allFiles = new Set(); |
| 212 | const referencedFiles = new Set(); |
| 213 | function shouldExcludeFile(filePath) { |
| 214 | if (filePath.includes('content-script.js') || filePath.includes('content-script.css')) return true; |
| 215 | if (filePath.includes('node_modules')) return true; |
| 216 | if (filePath.endsWith('fh-config.js')) return true; |
| 217 | return false; |
| 218 | } |
| 219 | function getAllFiles(dir) { |
| 220 | const files = fs.readdirSync(dir); |
| 221 | files.forEach(file => { |
no outgoing calls
no test coverage detected