@thi.ng/resolve-map 7.1.24 → 7.1.26

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 +1 -1
  3. package/package.json +11 -11
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-03-02T18:09:03Z
3
+ - **Last updated**: 2023-03-14T13:27:19Z
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
@@ -298,7 +298,7 @@ res.e(2);
298
298
  #### Protecting values
299
299
 
300
300
  Values can be protected from further resolution attempts by wrapping them via
301
- [`resolved()`](https://docs.thi.ng/umbrella/resolve-map/modules.html#resolved).
301
+ [`resolved()`](https://docs.thi.ng/umbrella/resolve-map/functions/resolved.html).
302
302
  By default, these wrapped values are only used during the resolution phase and
303
303
  the final result object/array will only contain the original, unwrapped values.
304
304
  Unwrapped values will also be supplied to any lookup functions, no
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/resolve-map",
3
- "version": "7.1.24",
3
+ "version": "7.1.26",
4
4
  "description": "DAG resolution of vanilla objects & arrays with internally linked values",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -25,7 +25,7 @@
25
25
  "license": "Apache-2.0",
26
26
  "scripts": {
27
27
  "build": "yarn clean && tsc --declaration",
28
- "clean": "rimraf '*.js' '*.d.ts' '*.map' doc",
28
+ "clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
29
29
  "doc": "typedoc --excludePrivate --excludeInternal --out doc src/index.ts",
30
30
  "doc:ae": "mkdir -p .ae/doc .ae/temp && api-extractor run --local --verbose",
31
31
  "doc:readme": "yarn doc:stats && tools:readme",
@@ -34,17 +34,17 @@
34
34
  "test": "testament test"
35
35
  },
36
36
  "dependencies": {
37
- "@thi.ng/api": "^8.7.3",
38
- "@thi.ng/checks": "^3.3.9",
39
- "@thi.ng/errors": "^2.2.12",
40
- "@thi.ng/paths": "^5.1.32"
37
+ "@thi.ng/api": "^8.7.4",
38
+ "@thi.ng/checks": "^3.3.10",
39
+ "@thi.ng/errors": "^2.2.13",
40
+ "@thi.ng/paths": "^5.1.33"
41
41
  },
42
42
  "devDependencies": {
43
- "@microsoft/api-extractor": "^7.34.2",
44
- "@thi.ng/testament": "^0.3.11",
45
- "rimraf": "^4.1.2",
43
+ "@microsoft/api-extractor": "^7.34.4",
44
+ "@thi.ng/testament": "^0.3.13",
45
+ "rimraf": "^4.4.0",
46
46
  "tools": "^0.0.1",
47
- "typedoc": "^0.23.24",
47
+ "typedoc": "^0.23.26",
48
48
  "typescript": "^4.9.5"
49
49
  },
50
50
  "keywords": [
@@ -76,5 +76,5 @@
76
76
  ],
77
77
  "year": 2018
78
78
  },
79
- "gitHead": "a2915dee637c1b8cd2e11a78a23bd035e4f750e7\n"
79
+ "gitHead": "cc46c097a3a173fb1ef41f57a858d03037063141\n"
80
80
  }