We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2dfcfd1 commit 97fdd13Copy full SHA for 97fdd13
tests/utils.ts
@@ -146,9 +146,13 @@ export function outputForInput(
146
147
const outputPath: string = projectRoot && projectOutDir !== undefined
148
? join(projectRoot, projectOutDir, dir, `${stem}.${outputExt}`)
149
+ : projectOutDir !== undefined
150
+ ? join(projectOutDir, dir, `${stem}.${outputExt}`)
151
: join(dir, `${stem}.${outputExt}`);
152
const supportPath: string = projectRoot && projectOutDir !== undefined
153
? join(projectRoot, projectOutDir, dir, `${stem}_files`)
154
155
+ ? join(projectOutDir, dir, `${stem}_files`)
156
: join(dir, `${stem}_files`);
157
158
return {
0 commit comments