@intellegens/cornerstone-cli 0.0.14 → 0.0.16

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.
@@ -79,8 +79,8 @@ exports.zodSchemaGeneratorCommand = {
79
79
  // Write (re)export file
80
80
  let exportFileContent = '';
81
81
  for (const typeName in exports) {
82
- const typePath = exports[typeName];
83
- exportFileContent += `export * from './${typePath}'; // .NET ${typeName} class\n`;
82
+ const typePath = `./${exports[typeName]}`.replace(/\\/g, '/');
83
+ exportFileContent += `export * from '${typePath}'; // .NET ${typeName} class\n`;
84
84
  }
85
85
  fs_extra_1.default.writeFileSync(path_1.default.join(outputPath, './index.ts'), exportFileContent, 'utf-8');
86
86
  // Prompt done
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intellegens/cornerstone-cli",
3
- "version": "0.0.14",
3
+ "version": "0.0.16",
4
4
  "main": "./index.js",
5
5
  "bin": {
6
6
  "cornerstone-ts": "./index.js"