configforge 1.0.0-beta.1 → 1.0.0-beta.3
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/README.md +8 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
# ConfigForge
|
|
2
2
|
|
|
3
|
-
>
|
|
3
|
+
> A TypeScript library for converting, mapping, and transforming config data in JSON and YAML.
|
|
4
|
+
|
|
5
|
+
ConfigForge is a universal config converter library with a fluent API
|
|
4
6
|
|
|
5
7
|
ConfigForge makes it easy to convert configuration files between different formats and structures. Just define your mappings and let ConfigForge handle the rest.
|
|
6
8
|
|
|
@@ -289,3 +291,8 @@ await result.save('./config.json');
|
|
|
289
291
|
---
|
|
290
292
|
|
|
291
293
|
That's it! ConfigForge makes config conversion simple and straightforward. No complex setup, no direct class manipulation - just define your mappings and convert.
|
|
294
|
+
|
|
295
|
+
## License
|
|
296
|
+
|
|
297
|
+
This package is licensed under the **PolyForm Noncommercial License 1.0.0**.
|
|
298
|
+
See the [LICENSE](./LICENSE) file for full terms.
|