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 4b83309 commit 494a5f0Copy full SHA for 494a5f0
tests/utils.ts
@@ -53,7 +53,6 @@ export function findProjectOutputDir(projectdir: string | undefined) {
53
} catch (error) {
54
throw new Error("Failed to read quarto project YAML", error);
55
}
56
-
57
if (type === "book") {
58
return "_book";
59
@@ -63,6 +62,10 @@ export function findProjectOutputDir(projectdir: string | undefined) {
63
62
if (type === "manuscript") {
64
return (yaml as any)?.project?.["output-dir"] || "_manuscript";
65
+ if (type === "default") {
66
+ return (yaml as any)?.project?.["output-dir"];
67
+ }
68
69
70
71
// Gets output that should be created for this input file and target format
0 commit comments