vite
Version:
Native-ESM powered web dev build tool
21 lines (19 loc) • 574 B
text/typescript
import { promises as fs } from 'fs'
import path from 'path'
export async function injectSourcesContent(
map: { sources: string[]; sourcesContent?: string[]; sourceRoot?: string },
file: string
): Promise<void> {
const sourceRoot = await fs.realpath(
path.resolve(path.dirname(file), map.sourceRoot || '')
)
map.sourcesContent = []
await Promise.all(
map.sources.filter(Boolean).map(async (sourcePath, i) => {
map.sourcesContent![i] = await fs.readFile(
path.resolve(sourceRoot, decodeURI(sourcePath)),
'utf-8'
)
})
)
}