(pkg, json)
| 264 | * write package.json file to file system for a given package |
| 265 | */ |
| 266 | export function writePackageJSON(pkg, json) { |
| 267 | fs.writeFileSync( |
| 268 | `${packagesDir}/${pkg}/package.json`, |
| 269 | JSON.stringify(json, null, 2) |
| 270 | ) |
| 271 | } |
| 272 | |
| 273 | /** |
| 274 | * Provide array of dependency packages for a provided package |
no outgoing calls
no test coverage detected