(version, name)
| 42 | // Write the install-root package.json. name defaults to the real package name |
| 43 | // so the install-guard passes; override it to exercise the guard. |
| 44 | function writeInstallPkg(version, name) { |
| 45 | fs.writeFileSync( |
| 46 | path.join(installRoot, 'package.json'), |
| 47 | JSON.stringify({ name: name || '@evomap/evolver', version }), |
| 48 | 'utf8', |
| 49 | ); |
| 50 | } |
| 51 | |
| 52 | function writeStrongEvolverMarkers() { |
| 53 | fs.mkdirSync(path.join(installRoot, 'src', 'gep'), { recursive: true }); |
no outgoing calls
no test coverage detected