xml-model 1.0.0 → 1.0.1
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 +2 -2
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
## Usage
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
Needs [typescript-rtti](https://github.com/typescript-rtti/typescript-rtti) to retrieve type at runtime.
|
|
6
6
|
|
|
7
7
|
To build something that relies in `xml-model` with vite
|
|
8
8
|
|
|
@@ -49,4 +49,4 @@ b.foo = "other";
|
|
|
49
49
|
console.log(XML.stringify(model.toXML(b))); // <my-class><foo>other</foo></my-class>
|
|
50
50
|
```
|
|
51
51
|
|
|
52
|
-
See [source code](https://github.com/MathisTLD/xml-model) for more
|
|
52
|
+
See [source code](https://github.com/MathisTLD/xml-model) for more
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "xml-model",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "allows transparent XML <-> Object conversion in typescript",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "MathisTLD",
|
|
@@ -66,4 +66,4 @@
|
|
|
66
66
|
"lint-staged": {
|
|
67
67
|
"*": "oxfmt --no-error-on-unmatched-pattern"
|
|
68
68
|
}
|
|
69
|
-
}
|
|
69
|
+
}
|