xml-disassembler 1.6.0 → 1.7.0

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/CHANGELOG.md CHANGED
@@ -5,6 +5,13 @@
5
5
 
6
6
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
7
7
 
8
+ ## [1.7.0](https://github.com/mcarvin8/xml-disassembler/compare/v1.6.0...v1.7.0) (2025-04-12)
9
+
10
+
11
+ ### Features
12
+
13
+ * add ini as a disassembled format ([de91154](https://github.com/mcarvin8/xml-disassembler/commit/de9115481b3b19e53e5e72339082e63cbd83e337))
14
+
8
15
  ## [1.6.0](https://github.com/mcarvin8/xml-disassembler/compare/v1.5.1...v1.6.0) (2025-04-12)
9
16
 
10
17
 
package/README.md CHANGED
@@ -2,7 +2,7 @@
2
2
 
3
3
  [![NPM](https://img.shields.io/npm/v/xml-disassembler.svg?label=xml-disassembler)](https://www.npmjs.com/package/xml-disassembler) [![Downloads/week](https://img.shields.io/npm/dw/xml-disassembler.svg)](https://npmjs.org/package/xml-disassembler)
4
4
 
5
- Disassemble XML files into smaller, more manageable files (XML/JSON/JSON5/TOML/YAML) and reassemble the XML when needed.
5
+ Disassemble XML files into smaller, more manageable files (XML/INI/JSON/JSON5/TOML/YAML) and reassemble the XML when needed.
6
6
 
7
7
  This tool simplifies version control, improves diff readability, and streamlines collaboration when dealing with large XML files.
8
8
 
@@ -12,12 +12,12 @@ This tool simplifies version control, improves diff readability, and streamlines
12
12
 
13
13
  - **Disassemble XML Files** – Break down XML files into structured directories.
14
14
  - **Reassemble XML Files** – Recreate the original XML structure from disassembled parts.
15
- > **NOTE**: The `xml-disassembler` aims to reassemble the original XML 100% element-wise, however, the element sorting will vary. The reassembler will sort elements based on how they are sorted in the disassembled directories.
15
+ > **NOTE**: The `xml-disassembler` aims to reassemble the original XML 100% element-wise, however, the element sorting will vary. The reassembler will sort elements based on how they are sorted in the disassembled directories. "toml" format sorting varies compared to the other formats.
16
16
  - **Unique Identifiers** – Use specific XML elements as file names or fallback to SHA-256 hashes.
17
17
  - **Ignore Files** – Specify XML files to exclude from disassembly.
18
18
  - **Logging** – Enable detailed debugging logs.
19
19
  - **Integrations** – Works with tools like Salesforce CLI
20
- - **Multiple Formats** - The disassembled file format can be XML, JSON, JSON5, TOML, or YAML based on preference. The reassembler will reassemble the original XML structure from these formats.
20
+ - **Multiple Formats** - The disassembled file format can be XML, INI, JSON, JSON5, TOML, or YAML based on preference. The reassembler will reassemble the original XML structure from these formats.
21
21
 
22
22
  <!-- TABLE OF CONTENTS -->
23
23
  <details>
@@ -53,7 +53,7 @@ npm install xml-disassembler
53
53
 
54
54
  ## Disassembling Files
55
55
 
56
- Disassemble a single XML file or multiple XML files within a directory into smaller files (XML/JSON/JSON5/TOML/YAML).
56
+ Disassemble a single XML file or multiple XML files within a directory into smaller files (XML/INI/JSON/JSON5/TOML/YAML).
57
57
 
58
58
  ```typescript
59
59
  /*
@@ -65,7 +65,7 @@ FLAGS
65
65
  - postPurge: Delete the XML file after disassembling it.
66
66
 
67
67
  - ignorePath: Path to an XML disassembly ignore file.
68
- - format: File format for the disassembled files ("xml", "json", "json5", "toml", "yaml")
68
+ - format: File format for the disassembled files ("xml", "ini", "json", "json5", "toml", "yaml")
69
69
  Defaults to "xml" if the format isn't supported or provided.
70
70
  */
71
71
  import { DisassembleXMLFileHandler } from "xml-disassembler";
@@ -84,7 +84,7 @@ await handler.disassemble({
84
84
 
85
85
  ## Reassembling Files
86
86
 
87
- Reassemble a directory of disassembled files (XML/JSON/JSON5/TOML/YAML) into a single XML file.
87
+ Reassemble a directory of disassembled files (XML/INI/JSON/JSON5/TOML/YAML) into a single XML file.
88
88
 
89
89
  ```typescript
90
90
  /*
@@ -164,6 +164,7 @@ await handler.reassemble({
164
164
  | **JSON** | ![JSON UID](https://raw.githubusercontent.com/mcarvin8/xml-disassembler/main/.github/images/disassembled-json.png)<br> | ![JSON Hash](https://raw.githubusercontent.com/mcarvin8/xml-disassembler/main/.github/images/disassembled-hashes-json.png)<br> |
165
165
  | **JSON5** | ![JSON5 UID](https://raw.githubusercontent.com/mcarvin8/xml-disassembler/main/.github/images/disassembled-json5.png)<br> | ![JSON5 Hash](https://raw.githubusercontent.com/mcarvin8/xml-disassembler/main/.github/images/disassembled-hashes-json5.png)<br> |
166
166
  | **TOML** | ![TOML UID](https://raw.githubusercontent.com/mcarvin8/xml-disassembler/main/.github/images/disassembled-toml.png)<br> | ![TOML Hash](https://raw.githubusercontent.com/mcarvin8/xml-disassembler/main/.github/images/disassembled-hashes-toml.png)<br> |
167
+ | **INI** | ![INI UID](https://raw.githubusercontent.com/mcarvin8/xml-disassembler/main/.github/images/disassembled-ini.png)<br> | ![INI Hash](https://raw.githubusercontent.com/mcarvin8/xml-disassembler/main/.github/images/disassembled-hashes-ini.png)<br> |
167
168
 
168
169
  ## Use Case
169
170