(pkg, path)
| 249 | * Given a package name, return relevant build files from the file system |
| 250 | */ |
| 251 | export function getRawBuildFile(pkg, path) { |
| 252 | return fs.readFileSync(`${packagesDir}/${pkg}/${path}`, 'utf-8') |
| 253 | } |
| 254 | |
| 255 | /** |
| 256 | * Given a package name, retrieve the package.json data |