xml-twig 1.7.5 → 1.7.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/doc/twig.md +1 -1
- package/package.json +3 -2
- package/twig.js +1 -1
package/doc/twig.md
CHANGED
|
@@ -1462,7 +1462,7 @@ Generic error for unsupported condition
|
|
|
1462
1462
|
|
|
1463
1463
|
## SAX
|
|
1464
1464
|
**Kind**: global constant
|
|
1465
|
-
**Version:**: 1.7.
|
|
1465
|
+
**Version:**: 1.7.7
|
|
1466
1466
|
**Author:**: Wernfried Domscheit
|
|
1467
1467
|
**Copyright:**: Copyright (c) 2025 Wernfried Domscheit. All rights reserved.
|
|
1468
1468
|
**Website:**: https://www.npmjs.com/package/xml-twig
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
},
|
|
6
6
|
"name": "xml-twig",
|
|
7
7
|
"description": "Node module for processing huge XML documents in tree mode",
|
|
8
|
-
"version": "1.7.
|
|
8
|
+
"version": "1.7.7",
|
|
9
9
|
"main": "twig.js",
|
|
10
10
|
"directories": {
|
|
11
11
|
"doc": "doc"
|
|
@@ -22,7 +22,8 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"test": "node demo.js",
|
|
24
24
|
"postversion": "sed -i -e \"s/@version: .*/@version: %npm_package_version%/\" twig.js",
|
|
25
|
-
"prepare": "jsdoc2md --private twig.js > doc/twig.md"
|
|
25
|
+
"prepare": "jsdoc2md --private twig.js > doc/twig.md",
|
|
26
|
+
"postpublish": "git commit -a -m \"Updated doc\""
|
|
26
27
|
},
|
|
27
28
|
"repository": {
|
|
28
29
|
"type": "git",
|
package/twig.js
CHANGED