(process: string)
| 5 | import fs from 'fs' |
| 6 | |
| 7 | const createLicenseOutputPath = (process: string) => { |
| 8 | return join(__dirname, 'out', 'licenses', `dependencies-${process}.txt`) |
| 9 | } |
| 10 | |
| 11 | const createDependencyPath = (packageName: string) => { |
| 12 | return join(__dirname, '..', '..', 'node_modules', packageName, 'package.json') |
no outgoing calls
no test coverage detected