@intellegens/cornerstone-cli 0.0.8 → 0.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -60,7 +60,7 @@ exports.zodSchemaGeneratorCommand = {
|
|
|
60
60
|
depth: 5,
|
|
61
61
|
});
|
|
62
62
|
// Generate TypeScript file
|
|
63
|
-
const fileName = typeName
|
|
63
|
+
const fileName = typeName;
|
|
64
64
|
const outputFilePath = path_1.default.join(namespaceDir, fileName);
|
|
65
65
|
fs_extra_1.default.writeFileSync(outputFilePath, zodSchema, 'utf-8');
|
|
66
66
|
console.log(`Generated Zod schema: ${outputFilePath}`);
|
|
@@ -71,5 +71,5 @@ exports.zodSchemaGeneratorCommand = {
|
|
|
71
71
|
console.error('❌ Error generating Zod schemas:', error);
|
|
72
72
|
process.exit(1);
|
|
73
73
|
}
|
|
74
|
-
}
|
|
74
|
+
},
|
|
75
75
|
};
|