(projectPath: string)
| 290 | } |
| 291 | |
| 292 | export function defaultMultiChainYamlManifestPath(projectPath: string): string { |
| 293 | return path.join(projectPath, DEFAULT_MULTICHAIN_MANIFEST); |
| 294 | } |
| 295 | |
| 296 | export function isMultichain(location: string): boolean { |
| 297 | const multichainContent = yaml.load(readFileSync(location, 'utf8')) as MultichainProjectManifest; |