@thi.ng/tangle 0.1.10 → 0.1.12
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 +2 -2
- package/package.json +17 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
-
- **Last updated**: 2022-
|
|
3
|
+
- **Last updated**: 2022-11-23T22:46:54Z
|
|
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.
|
|
@@ -20,10 +20,10 @@ and/or version bumps of transitive dependencies.
|
|
|
20
20
|
|
|
21
21
|
#### 🚀 Features
|
|
22
22
|
|
|
23
|
+
- import as new package ([99e789e](https://github.com/thi-ng/umbrella/commit/99e789e))
|
|
23
24
|
- update/fix tangle logic, filesys context, CLI ([85a3968](https://github.com/thi-ng/umbrella/commit/85a3968))
|
|
24
25
|
- add block concatenation if multiple blocks w/ same target
|
|
25
26
|
- fix block boundary regex
|
|
26
27
|
- add absolute path checks for outputs
|
|
27
28
|
- refactor TangleCtx, extract FileSys, update in-memory impl
|
|
28
29
|
- expose CLI in package.json
|
|
29
|
-
- import as new package ([99e789e](https://github.com/thi-ng/umbrella/commit/99e789e))
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@thi.ng/tangle",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.12",
|
|
4
4
|
"description": "Literate programming code block tangling / codegen utility, inspired by org-mode & noweb",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -35,23 +35,23 @@
|
|
|
35
35
|
"test": "testament test"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@thi.ng/api": "^8.
|
|
39
|
-
"@thi.ng/args": "^2.2.
|
|
40
|
-
"@thi.ng/checks": "^3.3.
|
|
41
|
-
"@thi.ng/compare": "^2.1.
|
|
42
|
-
"@thi.ng/date": "^2.3.
|
|
43
|
-
"@thi.ng/errors": "^2.2.
|
|
44
|
-
"@thi.ng/file-io": "^0.3.
|
|
45
|
-
"@thi.ng/logger": "^1.4.
|
|
46
|
-
"@thi.ng/strings": "^3.3.
|
|
47
|
-
"@thi.ng/transducers": "^8.3.
|
|
38
|
+
"@thi.ng/api": "^8.5.0",
|
|
39
|
+
"@thi.ng/args": "^2.2.10",
|
|
40
|
+
"@thi.ng/checks": "^3.3.3",
|
|
41
|
+
"@thi.ng/compare": "^2.1.17",
|
|
42
|
+
"@thi.ng/date": "^2.3.16",
|
|
43
|
+
"@thi.ng/errors": "^2.2.4",
|
|
44
|
+
"@thi.ng/file-io": "^0.3.20",
|
|
45
|
+
"@thi.ng/logger": "^1.4.3",
|
|
46
|
+
"@thi.ng/strings": "^3.3.18",
|
|
47
|
+
"@thi.ng/transducers": "^8.3.24"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
50
|
"@microsoft/api-extractor": "^7.33.5",
|
|
51
|
-
"@thi.ng/testament": "^0.3.
|
|
51
|
+
"@thi.ng/testament": "^0.3.5",
|
|
52
52
|
"rimraf": "^3.0.2",
|
|
53
53
|
"tools": "^0.0.1",
|
|
54
|
-
"typedoc": "^0.23.
|
|
54
|
+
"typedoc": "^0.23.20",
|
|
55
55
|
"typescript": "^4.8.4"
|
|
56
56
|
},
|
|
57
57
|
"keywords": [
|
|
@@ -73,8 +73,9 @@
|
|
|
73
73
|
"node": ">=14"
|
|
74
74
|
},
|
|
75
75
|
"files": [
|
|
76
|
-
"
|
|
77
|
-
"
|
|
76
|
+
"./*.js",
|
|
77
|
+
"./*.d.ts",
|
|
78
|
+
"bin"
|
|
78
79
|
],
|
|
79
80
|
"exports": {
|
|
80
81
|
".": {
|
|
@@ -91,5 +92,5 @@
|
|
|
91
92
|
"status": "alpha",
|
|
92
93
|
"year": 2022
|
|
93
94
|
},
|
|
94
|
-
"gitHead": "
|
|
95
|
+
"gitHead": "75ec32ff7f1b7b5e72e7a04ace24732cd5d6c774\n"
|
|
95
96
|
}
|