@thi.ng/hiccup 5.1.22 → 5.1.24
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 +7 -1
- package/api.js +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2024-03-
|
|
3
|
+
- **Last updated**: 2024-03-18T08:40:00Z
|
|
4
4
|
- **Generator**: [thi.ng/monopub](https://thi.ng/monopub)
|
|
5
5
|
|
|
6
6
|
All notable changes to this project will be documented in this file.
|
|
@@ -9,6 +9,12 @@ See [Conventional Commits](https://conventionalcommits.org/) for commit guidelin
|
|
|
9
9
|
**Note:** Unlisted _patch_ versions only involve non-code or otherwise excluded changes
|
|
10
10
|
and/or version bumps of transitive dependencies.
|
|
11
11
|
|
|
12
|
+
### [5.1.23](https://github.com/thi-ng/umbrella/tree/@thi.ng/hiccup@5.1.23) (2024-03-18)
|
|
13
|
+
|
|
14
|
+
#### ♻️ Refactoring
|
|
15
|
+
|
|
16
|
+
- minor update regexp ([c2eb896](https://github.com/thi-ng/umbrella/commit/c2eb896))
|
|
17
|
+
|
|
12
18
|
## [5.1.0](https://github.com/thi-ng/umbrella/tree/@thi.ng/hiccup@5.1.0) (2023-12-09)
|
|
13
19
|
|
|
14
20
|
#### 🚀 Features
|
package/api.js
CHANGED
|
@@ -5,7 +5,7 @@ const PROC_TAGS = {
|
|
|
5
5
|
"!ELEMENT": ">\n",
|
|
6
6
|
"!ATTLIST": ">\n"
|
|
7
7
|
};
|
|
8
|
-
const RE_TAG = /^([^\s
|
|
8
|
+
const RE_TAG = /^([^\s.#]+)(?:#([^\s.#]+))?(?:\.([^\s#]+))?$/;
|
|
9
9
|
const COMMENT = "__COMMENT__";
|
|
10
10
|
const CDATA = "!CDATA";
|
|
11
11
|
const DOCTYPE = "!DOCTYPE";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/hiccup",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.24",
|
|
4
4
|
"description": "HTML/SVG/XML serialization of nested data structures, iterables & closures",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -37,13 +37,13 @@
|
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
39
|
"@thi.ng/api": "^8.9.30",
|
|
40
|
-
"@thi.ng/checks": "^3.5.
|
|
40
|
+
"@thi.ng/checks": "^3.5.4",
|
|
41
41
|
"@thi.ng/errors": "^2.5.1",
|
|
42
|
-
"@thi.ng/strings": "^3.7.
|
|
42
|
+
"@thi.ng/strings": "^3.7.26"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@microsoft/api-extractor": "^7.42.3",
|
|
46
|
-
"@thi.ng/atom": "^5.2.
|
|
46
|
+
"@thi.ng/atom": "^5.2.40",
|
|
47
47
|
"esbuild": "^0.20.1",
|
|
48
48
|
"rimraf": "^5.0.5",
|
|
49
49
|
"typedoc": "^0.25.12",
|
|
@@ -128,5 +128,5 @@
|
|
|
128
128
|
],
|
|
129
129
|
"year": 2016
|
|
130
130
|
},
|
|
131
|
-
"gitHead": "
|
|
131
|
+
"gitHead": "da965520b2f3f8c259a791e8e8864308be2ba0be\n"
|
|
132
132
|
}
|