@thi.ng/interceptors 3.2.7 → 3.2.9

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 +13 -13
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
@@ -45,7 +45,7 @@ programming](https://en.wikipedia.org/wiki/Aspect-oriented_programming)).
45
45
  You want to reuse some functionality across components within your app.
46
46
  For example, if you have multiple actions which should be undoable, you
47
47
  can compose your main event handlers with the
48
- [`snapShot()`](https://docs.thi.ng/umbrella/interceptors/modules.html#snapshot)
48
+ [`snapShot()`](https://docs.thi.ng/umbrella/interceptors/functions/snapshot.html)
49
49
  interceptor, which requires a
50
50
  [@thi.ng/atom](https://github.com/thi-ng/umbrella/tree/develop/packages/atom)/History-like
51
51
  instance and records a snapshot of the current app state, but else is
@@ -94,7 +94,7 @@ validation & logging post-update. I.e., interceptors commonly need `pre`
94
94
  only.
95
95
 
96
96
  Like with
97
- [`trace()`](https://docs.thi.ng/umbrella/interceptors/modules.html#trace) some
97
+ [`trace()`](https://docs.thi.ng/umbrella/interceptors/functions/trace.html) some
98
98
  interceptors DO have side effects, but they're really the exception to the rule.
99
99
  For example, `snapshot()` is idempotent since it only records a new snapshot if
100
100
  it's different from the last and `trace()`, but is typically used during
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/interceptors",
3
- "version": "3.2.7",
3
+ "version": "3.2.9",
4
4
  "description": "Interceptor based event bus, side effect & immutable state handling",
5
5
  "type": "module",
6
6
  "module": "./index.js",
@@ -28,7 +28,7 @@
28
28
  "license": "Apache-2.0",
29
29
  "scripts": {
30
30
  "build": "yarn clean && tsc --declaration",
31
- "clean": "rimraf '*.js' '*.d.ts' '*.map' doc",
31
+ "clean": "rimraf --glob '*.js' '*.d.ts' '*.map' doc",
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": "yarn doc:stats && tools:readme",
@@ -37,19 +37,19 @@
37
37
  "test": "testament test"
38
38
  },
39
39
  "dependencies": {
40
- "@thi.ng/api": "^8.7.3",
41
- "@thi.ng/atom": "^5.1.32",
42
- "@thi.ng/checks": "^3.3.9",
43
- "@thi.ng/errors": "^2.2.12",
44
- "@thi.ng/logger": "^1.4.9",
45
- "@thi.ng/paths": "^5.1.32"
40
+ "@thi.ng/api": "^8.7.4",
41
+ "@thi.ng/atom": "^5.1.33",
42
+ "@thi.ng/checks": "^3.3.10",
43
+ "@thi.ng/errors": "^2.2.13",
44
+ "@thi.ng/logger": "^1.4.11",
45
+ "@thi.ng/paths": "^5.1.33"
46
46
  },
47
47
  "devDependencies": {
48
- "@microsoft/api-extractor": "^7.34.2",
49
- "@thi.ng/testament": "^0.3.11",
50
- "rimraf": "^4.1.2",
48
+ "@microsoft/api-extractor": "^7.34.4",
49
+ "@thi.ng/testament": "^0.3.13",
50
+ "rimraf": "^4.4.0",
51
51
  "tools": "^0.0.1",
52
- "typedoc": "^0.23.24",
52
+ "typedoc": "^0.23.26",
53
53
  "typescript": "^4.9.5"
54
54
  },
55
55
  "keywords": [
@@ -94,5 +94,5 @@
94
94
  "status": "completed",
95
95
  "year": 2016
96
96
  },
97
- "gitHead": "a2915dee637c1b8cd2e11a78a23bd035e4f750e7\n"
97
+ "gitHead": "cc46c097a3a173fb1ef41f57a858d03037063141\n"
98
98
  }