(projectPath: string)
| 269 | } |
| 270 | |
| 271 | export function defaultGitIgnorePath(projectPath: string): string { |
| 272 | return path.join(projectPath, DEFAULT_GIT_IGNORE); |
| 273 | } |
| 274 | |
| 275 | export function copyFolderSync(source: string, target: string): void { |
| 276 | if (!fs.existsSync(target)) { |