* 写入文件(带日志)
(filePath, content)
| 246 | * 写入文件(带日志) |
| 247 | */ |
| 248 | async function writeFile(filePath, content) { |
| 249 | const relativePath = path.relative(distDir, filePath); |
| 250 | await ensureDir(path.dirname(filePath)); |
| 251 | await fs.promises.writeFile(filePath, content, 'utf-8'); |
| 252 | BuildLogger.log(` ✓ ${relativePath}`); |
| 253 | } |
| 254 | |
| 255 | /** |
| 256 | * 主函数 |