(relativePath: string)
| 37 | |
| 38 | // Utility functions |
| 39 | const workspacePath = (relativePath: string) => |
| 40 | resolve(__dirname, '../../', relativePath); |
| 41 | |
| 42 | const savePackageJson = (absPath: string, data: PackageJson) => { |
| 43 | fs.writeFileSync(absPath, JSON.stringify(data, null, 2), 'utf-8'); |
no outgoing calls
no test coverage detected