-
-
Notifications
You must be signed in to change notification settings - Fork 6.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: ignore ENOENT in
injectSourcesContent
(#2904)
- Loading branch information
1 parent
7a3c6e6
commit 0693d03
Showing
2 changed files
with
48 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,54 @@ | ||
import { promises as fs } from 'fs' | ||
import path from 'path' | ||
import { promises as fs } from 'fs' | ||
import { Logger } from '../logger' | ||
import { createDebugger } from '../utils' | ||
|
||
const isDebug = !!process.env.DEBUG | ||
const debug = createDebugger('vite:sourcemap', { | ||
onlyWhenFocused: true | ||
}) | ||
|
||
interface SourceMapLike { | ||
sources: string[] | ||
sourcesContent?: (string | null)[] | ||
sourceRoot?: string | ||
} | ||
|
||
export async function injectSourcesContent( | ||
map: { sources: string[]; sourcesContent?: string[]; sourceRoot?: string }, | ||
file: string | ||
map: SourceMapLike, | ||
file: string, | ||
logger: Logger | ||
): 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' | ||
) | ||
let sourceRoot: string | undefined | ||
try { | ||
// The source root is undefined for virtual modules and permission errors. | ||
sourceRoot = await fs.realpath( | ||
path.resolve(path.dirname(file), map.sourceRoot || '') | ||
) | ||
} catch {} | ||
|
||
const missingSources: string[] = [] | ||
map.sourcesContent = await Promise.all( | ||
map.sources.map((sourcePath) => { | ||
if (sourcePath) { | ||
sourcePath = decodeURI(sourcePath) | ||
if (sourceRoot) { | ||
sourcePath = path.resolve(sourceRoot, sourcePath) | ||
} | ||
return fs.readFile(sourcePath, 'utf-8').catch(() => { | ||
missingSources.push(sourcePath) | ||
return null | ||
}) | ||
} | ||
return null | ||
}) | ||
) | ||
|
||
// Use this command… | ||
// DEBUG="vite:sourcemap" vite build | ||
// …to log the missing sources. | ||
if (missingSources.length) { | ||
logger.warnOnce(`Sourcemap for "${file}" points to missing source files`) | ||
isDebug && debug(`Missing sources:\n ` + missingSources.join(`\n `)) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters