(tempDir?: string)
| 60 | * @memberof LocalGenerator |
| 61 | */ |
| 62 | export async function createworkDir(tempDir?: string): Promise<string> { |
| 63 | const workDirName = uuid.generate(); |
| 64 | const workDir = resolve(tempDir || '../../node_modules/.temp/', workDirName); |
| 65 | await ensureDir(workDir); |
| 66 | log('create temp dir successfully', workDir); |
| 67 | return workDir; |
| 68 | } |
| 69 | |
| 70 | /** |
| 71 | * 分离物料组件名称和版本号 |
no outgoing calls
no test coverage detected
searching dependent graphs…