@thi.ng/tangle 0.2.11 → 0.2.13

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 -2
  3. package/package.json +14 -15
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2024-04-11T12:32:44Z
3
+ - **Last updated**: 2024-04-23T07:02:18Z
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
@@ -327,10 +327,10 @@ import * as tan from "@thi.ng/tangle";
327
327
  Browser ESM import:
328
328
 
329
329
  ```html
330
- <script type="module" src="https://cdn.skypack.dev/@thi.ng/tangle"></script>
330
+ <script type="module" src="https://esm.run/@thi.ng/tangle"></script>
331
331
  ```
332
332
 
333
- [Skypack documentation](https://docs.skypack.dev/)
333
+ [JSDelivr documentation](https://www.jsdelivr.com/)
334
334
 
335
335
  For Node.js REPL:
336
336
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/tangle",
3
- "version": "0.2.11",
3
+ "version": "0.2.13",
4
4
  "description": "Literate programming code block tangling / codegen utility, inspired by org-mode & noweb",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -28,7 +28,7 @@
28
28
  "build": "yarn build:esbuild && yarn build:decl",
29
29
  "build:decl": "tsc --declaration --emitDeclarationOnly",
30
30
  "build:esbuild": "esbuild --format=esm --platform=neutral --target=es2022 --tsconfig=tsconfig.json --outdir=. src/**/*.ts",
31
- "clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
31
+ "clean": "bun ../../tools/src/clean-package.ts",
32
32
  "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
33
33
  "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
34
34
  "doc:readme": "bun ../../tools/src/module-stats.ts && bun ../../tools/src/readme.ts",
@@ -37,22 +37,21 @@
37
37
  "tool:tangle": "../../node_modules/.bin/tangle src/**/*.ts"
38
38
  },
39
39
  "dependencies": {
40
- "@thi.ng/api": "^8.10.1",
41
- "@thi.ng/args": "^2.3.30",
42
- "@thi.ng/checks": "^3.6.1",
43
- "@thi.ng/compare": "^2.3.2",
44
- "@thi.ng/date": "^2.7.14",
45
- "@thi.ng/errors": "^2.5.4",
46
- "@thi.ng/file-io": "^2.0.2",
47
- "@thi.ng/logger": "^3.0.9",
48
- "@thi.ng/strings": "^3.7.30",
49
- "@thi.ng/transducers": "^9.0.1"
40
+ "@thi.ng/api": "^8.11.1",
41
+ "@thi.ng/args": "^2.3.32",
42
+ "@thi.ng/checks": "^3.6.3",
43
+ "@thi.ng/compare": "^2.3.4",
44
+ "@thi.ng/date": "^2.7.16",
45
+ "@thi.ng/errors": "^2.5.6",
46
+ "@thi.ng/file-io": "^2.1.0",
47
+ "@thi.ng/logger": "^3.0.11",
48
+ "@thi.ng/strings": "^3.7.32",
49
+ "@thi.ng/transducers": "^9.0.3"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@microsoft/api-extractor": "^7.43.0",
53
- "@thi.ng/testament": "^0.4.26",
53
+ "@thi.ng/testament": "^0.4.28",
54
54
  "esbuild": "^0.20.2",
55
- "rimraf": "^5.0.5",
56
55
  "typedoc": "^0.25.12",
57
56
  "typescript": "^5.4.3"
58
57
  },
@@ -94,5 +93,5 @@
94
93
  "status": "alpha",
95
94
  "year": 2022
96
95
  },
97
- "gitHead": "18a0c063a7b33d790e5bc2486c106f45f663ac28\n"
96
+ "gitHead": "5dd66c18a3862a3af69a5b2f49563f7cbdd960c2\n"
98
97
  }