feat: deref symlinks when copying static assets (closes #588)
| | |
| | | async emit({ argv, cfg }, _content, _resources, _emit): Promise<FilePath[]> { |
| | | const staticPath = joinSegments(QUARTZ, "static") |
| | | const fps = await glob("**", staticPath, cfg.configuration.ignorePatterns) |
| | | await fs.promises.cp(staticPath, joinSegments(argv.output, "static"), { recursive: true }) |
| | | await fs.promises.cp(staticPath, joinSegments(argv.output, "static"), { |
| | | recursive: true, |
| | | dereference: true, |
| | | }) |
| | | return fps.map((fp) => joinSegments(argv.output, "static", fp)) as FilePath[] |
| | | }, |
| | | }) |