generate-dac 1.0.6 → 1.0.7

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.
package/dist/DAC_Utils.js CHANGED
@@ -475,7 +475,6 @@ function DAC_Generate_From_XLSX(filePath, sheetIndex) {
475
475
  var outputFolder = (0, file_utils_1.get_filename_without_extension)(filePath);
476
476
  console.log("DAC_Generate_From_XLSX: ".concat(outputFolder).yellow);
477
477
  var sheets = (0, excel_utils_1.json_read_all_sheets_from_excel)(filePath, { sheetIndex: sheetIndex, transformColumnName: true });
478
- (0, excel_utils_1.json_to_file)(filePath.replace('xlsx', 'json'), sheets);
479
478
  var schemas = [];
480
479
  var stores = [];
481
480
  var dropTables = [];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "generate-dac",
3
- "version": "1.0.6",
3
+ "version": "1.0.7",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/DAC_Utils.ts CHANGED
@@ -622,8 +622,6 @@ export function DAC_Generate_From_XLSX(filePath: string, sheetIndex: number = 0)
622
622
 
623
623
  const sheets: SheetData[] = json_read_all_sheets_from_excel(filePath, { sheetIndex: sheetIndex, transformColumnName: true });
624
624
 
625
- json_to_file(filePath.replace('xlsx', 'json'), sheets);
626
-
627
625
  const schemas: string[] = [];
628
626
  const stores: string[] = [];
629
627
  const dropTables: string[] = [];