@thi.ng/transclude 0.1.97 → 0.1.99

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.
Files changed (3) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/README.md +2 -1
  3. package/package.json +16 -14
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-07-22T13:15:57Z
3
+ - **Last updated**: 2024-08-13T19:40:07Z
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.
package/README.md CHANGED
@@ -37,7 +37,7 @@ for a concrete usage example...
37
37
 
38
38
  ## Status
39
39
 
40
- **ALPHA** - bleeding edge / work-in-progress
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.97",
3
+ "version": "0.1.99",
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,30 +36,32 @@
36
36
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
37
37
  },
38
38
  "dependencies": {
39
- "@thi.ng/api": "^8.11.7",
40
- "@thi.ng/checks": "^3.6.9",
41
- "@thi.ng/file-io": "^2.1.9",
42
- "@thi.ng/logger": "^3.0.17",
43
- "@thi.ng/strings": "^3.8.1",
44
- "@thi.ng/transducers": "^9.0.12"
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.3",
44
+ "@thi.ng/transducers": "^9.1.0"
45
45
  },
46
46
  "devDependencies": {
47
- "@microsoft/api-extractor": "^7.47.0",
47
+ "@microsoft/api-extractor": "^7.47.5",
48
48
  "esbuild": "^0.23.0",
49
- "typedoc": "^0.26.3",
50
- "typescript": "^5.5.3"
49
+ "typedoc": "^0.26.5",
50
+ "typescript": "^5.5.4"
51
51
  },
52
52
  "keywords": [
53
- "engine",
54
53
  "functional",
55
54
  "generator",
56
55
  "json",
57
56
  "markdown",
58
- "nodejs",
59
57
  "no-browser",
58
+ "nodejs",
60
59
  "npm",
60
+ "parser",
61
61
  "template",
62
62
  "text",
63
+ "tool",
64
+ "transclusion",
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": "bd22b0826134b79064169371665b4d6caa9b6066\n"
114
+ "gitHead": "e914ebbd81c56783c39cf746548c547cbacadc96\n"
113
115
  }