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 044fa13 commit ae48c0eCopy full SHA for ae48c0e
genkit-tools/cli/src/utils/build-md.js
@@ -31,7 +31,6 @@ const goContextPath = path.resolve(CONTEXT_DIR, 'GENKIT.go.md');
31
32
const AUTO_GEN_HEADER = '// Auto-generated, do not edit';
33
34
-console.log(CONTEXT_DIR);
35
// Ensure output directory exists
36
if (!fs.existsSync(CONTEXT_DIR)) {
37
throw new Error('Context dir is missing.');
@@ -53,5 +52,6 @@ async function mdToTs(filePath, target) {
53
52
}
54
55
+fs.mkdirSync(TARGET_DIR, { recursive: true });
56
mdToTs(jsContextPath, path.join(TARGET_DIR, 'nodejs.ts'));
57
mdToTs(goContextPath, path.join(TARGET_DIR, 'go.ts'));
0 commit comments