(filepath)
| 242 | }; |
| 243 | |
| 244 | function readPackageJson(filepath) { |
| 245 | const fs = require('jsdoc/fs'); |
| 246 | |
| 247 | try { |
| 248 | return stripJsonComments( fs.readFileSync(filepath, 'utf8') ); |
| 249 | } |
| 250 | catch (e) { |
| 251 | logger.error('Unable to read the package file "%s"', filepath); |
| 252 | |
| 253 | return null; |
| 254 | } |
| 255 | } |
| 256 | |
| 257 | function buildSourceList() { |
| 258 | const Readme = require('jsdoc/readme'); |
no outgoing calls
no test coverage detected
searching dependent graphs…