@thi.ng/parse 2.4.52 → 2.4.53
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 +1 -1
- package/README.md +3 -1
- package/package.json +4 -2
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -73,6 +73,8 @@ grammars](https://makertube.net/w/ursFuQNJQQskmejx1ydL7q)
|
|
|
73
73
|
|
|
74
74
|
## Related packages
|
|
75
75
|
|
|
76
|
+
- [@thi.ng/hiccup-markdown](https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup-markdown) - Markdown parser & serializer from/to Hiccup format
|
|
77
|
+
- [@thi.ng/proctext](https://github.com/thi-ng/umbrella/tree/develop/packages/proctext) - Extensible procedural text generation engine with dynamic, mutable state, indirection, randomizable & recursive variable expansions
|
|
76
78
|
- [@thi.ng/transducers-fsm](https://github.com/thi-ng/umbrella/tree/develop/packages/transducers-fsm) - Transducer-based Finite State Machine transformer
|
|
77
79
|
|
|
78
80
|
## Installation
|
|
@@ -101,7 +103,7 @@ For Node.js REPL:
|
|
|
101
103
|
const parse = await import("@thi.ng/parse");
|
|
102
104
|
```
|
|
103
105
|
|
|
104
|
-
Package sizes (brotli'd, pre-treeshake): ESM: 5.
|
|
106
|
+
Package sizes (brotli'd, pre-treeshake): ESM: 5.27 KB
|
|
105
107
|
|
|
106
108
|
## Dependencies
|
|
107
109
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/parse",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.53",
|
|
4
4
|
"description": "Purely functional parser combinators & AST generation for generic inputs",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -236,9 +236,11 @@
|
|
|
236
236
|
},
|
|
237
237
|
"thi.ng": {
|
|
238
238
|
"related": [
|
|
239
|
+
"hiccup-markdown",
|
|
240
|
+
"proctext",
|
|
239
241
|
"transducers-fsm"
|
|
240
242
|
],
|
|
241
243
|
"year": 2020
|
|
242
244
|
},
|
|
243
|
-
"gitHead": "
|
|
245
|
+
"gitHead": "9f71f7f82fed2a980078a96bdafd2e706f526c75\n"
|
|
244
246
|
}
|