@thi.ng/transclude 0.1.97 → 0.1.98
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 +2 -1
- package/package.json +15 -13
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -37,7 +37,7 @@ for a concrete usage example...
|
|
|
37
37
|
|
|
38
38
|
## Status
|
|
39
39
|
|
|
40
|
-
**
|
|
40
|
+
**STABLE** - used in production
|
|
41
41
|
|
|
42
42
|
[Search or submit any issues for this package](https://github.com/thi-ng/umbrella/issues?q=%5Btransclude%5D+in%3Atitle)
|
|
43
43
|
|
|
@@ -45,6 +45,7 @@ for a concrete usage example...
|
|
|
45
45
|
|
|
46
46
|
- [@thi.ng/hiccup-markdown](https://github.com/thi-ng/umbrella/tree/develop/packages/hiccup-markdown) - Markdown parser & serializer from/to Hiccup format
|
|
47
47
|
- [@thi.ng/markdown-table](https://github.com/thi-ng/umbrella/tree/develop/packages/markdown-table) - Markdown table formatter/generator with support for column alignments
|
|
48
|
+
- [@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
|
|
48
49
|
- [@thi.ng/tangle](https://github.com/thi-ng/umbrella/tree/develop/packages/tangle) - Literate programming code block tangling / codegen utility, inspired by org-mode & noweb
|
|
49
50
|
|
|
50
51
|
## Installation
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/transclude",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.98",
|
|
4
4
|
"description": "Extensible functional template engine for text document generation, incl. various high-level Markdown features",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -36,18 +36,18 @@
|
|
|
36
36
|
"tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@thi.ng/api": "^8.11.
|
|
40
|
-
"@thi.ng/checks": "^3.6.
|
|
41
|
-
"@thi.ng/file-io": "^2.1.
|
|
42
|
-
"@thi.ng/logger": "^3.0.
|
|
43
|
-
"@thi.ng/strings": "^3.8.
|
|
44
|
-
"@thi.ng/transducers": "^9.0.
|
|
39
|
+
"@thi.ng/api": "^8.11.8",
|
|
40
|
+
"@thi.ng/checks": "^3.6.10",
|
|
41
|
+
"@thi.ng/file-io": "^2.1.10",
|
|
42
|
+
"@thi.ng/logger": "^3.0.18",
|
|
43
|
+
"@thi.ng/strings": "^3.8.2",
|
|
44
|
+
"@thi.ng/transducers": "^9.0.13"
|
|
45
45
|
},
|
|
46
46
|
"devDependencies": {
|
|
47
|
-
"@microsoft/api-extractor": "^7.47.
|
|
47
|
+
"@microsoft/api-extractor": "^7.47.5",
|
|
48
48
|
"esbuild": "^0.23.0",
|
|
49
|
-
"typedoc": "^0.26.
|
|
50
|
-
"typescript": "^5.5.
|
|
49
|
+
"typedoc": "^0.26.5",
|
|
50
|
+
"typescript": "^5.5.4"
|
|
51
51
|
},
|
|
52
52
|
"keywords": [
|
|
53
53
|
"engine",
|
|
@@ -55,11 +55,13 @@
|
|
|
55
55
|
"generator",
|
|
56
56
|
"json",
|
|
57
57
|
"markdown",
|
|
58
|
-
"nodejs",
|
|
59
58
|
"no-browser",
|
|
59
|
+
"nodejs",
|
|
60
60
|
"npm",
|
|
61
|
+
"parser",
|
|
61
62
|
"template",
|
|
62
63
|
"text",
|
|
64
|
+
"tool",
|
|
63
65
|
"typescript"
|
|
64
66
|
],
|
|
65
67
|
"publishConfig": {
|
|
@@ -104,10 +106,10 @@
|
|
|
104
106
|
"related": [
|
|
105
107
|
"hiccup-markdown",
|
|
106
108
|
"markdown-table",
|
|
109
|
+
"proctext",
|
|
107
110
|
"tangle"
|
|
108
111
|
],
|
|
109
|
-
"status": "alpha",
|
|
110
112
|
"year": 2022
|
|
111
113
|
},
|
|
112
|
-
"gitHead": "
|
|
114
|
+
"gitHead": "ec78f98d015e4d214a0b840e72e497407807daf3\n"
|
|
113
115
|
}
|