xml-disassembler 1.10.13 → 1.10.15
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 +14 -0
- package/LICENSE.md +9 -0
- package/README.md +9 -5
- package/disassemble.log +451 -451
- package/dist/index.cjs.map +1 -1
- package/dist/index.min.cjs.map +1 -1
- package/dist/index.min.mjs.map +1 -1
- package/dist/index.min.umd.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +4 -4
- /package/{LICENSE → LICENSE.isc} +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,20 @@
|
|
|
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.10.15](https://github.com/mcarvin8/xml-disassembler/compare/v1.10.14...v1.10.15) (2025-06-01)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* upgrade pnpm version ([#128](https://github.com/mcarvin8/xml-disassembler/issues/128)) ([34da28b](https://github.com/mcarvin8/xml-disassembler/commit/34da28b450633f36ac5e3a2bfd08d35304dc222e))
|
|
14
|
+
|
|
15
|
+
## [1.10.14](https://github.com/mcarvin8/xml-disassembler/compare/v1.10.13...v1.10.14) (2025-06-01)
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
### Bug Fixes
|
|
19
|
+
|
|
20
|
+
* **deps:** bump yaml from 2.7.1 to 2.8.0 ([#123](https://github.com/mcarvin8/xml-disassembler/issues/123)) ([87c0c33](https://github.com/mcarvin8/xml-disassembler/commit/87c0c3306cb4218871fad488b2e7338c3ee18ac3))
|
|
21
|
+
|
|
8
22
|
## [1.10.13](https://github.com/mcarvin8/xml-disassembler/compare/v1.10.12...v1.10.13) (2025-05-22)
|
|
9
23
|
|
|
10
24
|
|
package/LICENSE.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Matthew Carvin
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
|
+
|
|
7
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
|
8
|
+
|
|
9
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
1
|
# `xml-disassembler`
|
|
2
2
|
|
|
3
|
-
[](https://www.npmjs.com/package/xml-disassembler)
|
|
3
|
+
[](https://www.npmjs.com/package/xml-disassembler)
|
|
4
|
+
[](https://raw.githubusercontent.com/mcarvin8/xml-disassembler/main/LICENSE.md)
|
|
5
|
+
[](https://npmjs.org/package/xml-disassembler)
|
|
6
|
+
[](https://qlty.sh/gh/mcarvin8/projects/xml-disassembler) [](https://qlty.sh/gh/mcarvin8/projects/xml-disassembler)
|
|
7
|
+
[](https://snyk.io//test/github/mcarvin8/xml-disassembler?targetFile=package.json)
|
|
4
8
|
|
|
5
9
|
Disassemble large XML files into smaller, modular files in formats like XML, INI, JSON, JSON5, TOML, or YAML—then reassemble them as needed.
|
|
6
10
|
|
|
@@ -36,7 +40,7 @@ Designed for improved version control, cleaner diffs, and easier team collaborat
|
|
|
36
40
|
- [XML Parser](#xml-parser)
|
|
37
41
|
- [Logging](#logging)
|
|
38
42
|
- [Contributing](#contributing)
|
|
39
|
-
- [Template](#template)
|
|
43
|
+
- [Template & License](#template-&-license)
|
|
40
44
|
</details>
|
|
41
45
|
|
|
42
46
|
---
|
|
@@ -192,8 +196,8 @@ Contributions are welcome! See [Contributing](https://github.com/mcarvin8/xml-di
|
|
|
192
196
|
|
|
193
197
|
---
|
|
194
198
|
|
|
195
|
-
## Template
|
|
199
|
+
## Template & License
|
|
196
200
|
|
|
197
|
-
This project
|
|
201
|
+
This project is based on a template by [Allan Oricil](https://github.com/AllanOricil) and licensed under the ISC license. The original code remains under the [ISC license](https://github.com/mcarvin8/xml-disassembler/blob/main/LICENSE.isc).
|
|
198
202
|
|
|
199
|
-
|
|
203
|
+
All contributions specific to the `xml-disassembler` is licensed under the [MIT license](https://github.com/mcarvin8/xml-disassembler/blob/main/LICENSE.md).
|