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 fb3e92f commit 673c384Copy full SHA for 673c384
vite.config.ts
@@ -9,7 +9,7 @@ function consolidateSnippets(projectRoot: string) {
9
cwd: projectRoot,
10
});
11
12
- if (cmd.status !== 1) return;
+ if (cmd.status === 0) return;
13
14
console.log(`Consolidating snippets failed:\n${cmd.output.toString()}`);
15
}
0 commit comments