@thi.ng/interceptors 3.2.8 → 3.2.10

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  # Change Log
2
2
 
3
- - **Last updated**: 2023-03-09T13:01:59Z
3
+ - **Last updated**: 2023-03-27T19:05:49Z
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/event-bus.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import type { IDeref, IObjectOf } from "@thi.ng/api";
2
2
  import type { IAtom } from "@thi.ng/atom";
3
- import { EffectDef, EffectPriority, Event, EventDef, IDispatch, Interceptor, InterceptorContext, InterceptorFn, SideEffect } from "./api.js";
3
+ import { type EffectDef, type EffectPriority, type Event, type EventDef, type IDispatch, type Interceptor, type InterceptorContext, type InterceptorFn, type SideEffect } from "./api.js";
4
4
  /**
5
5
  * Batched event processor for using composable interceptors for event
6
6
  * handling and side effects to execute the result of handled events.
package/interceptors.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import type { Fn, FnO, Path } from "@thi.ng/api";
2
- import { Event, InterceptorFn, InterceptorPredicate } from "./api.js";
2
+ import { type Event, type InterceptorFn, type InterceptorPredicate } from "./api.js";
3
3
  /**
4
4
  * Debug interceptor to log the current event to the console.
5
5
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@thi.ng/interceptors",
3
- "version": "3.2.8",
3
+ "version": "3.2.10",
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,20 +37,20 @@
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.10",
45
- "@thi.ng/paths": "^5.1.32"
40
+ "@thi.ng/api": "^8.7.5",
41
+ "@thi.ng/atom": "^5.1.34",
42
+ "@thi.ng/checks": "^3.3.11",
43
+ "@thi.ng/errors": "^2.2.14",
44
+ "@thi.ng/logger": "^1.4.12",
45
+ "@thi.ng/paths": "^5.1.34"
46
46
  },
47
47
  "devDependencies": {
48
- "@microsoft/api-extractor": "^7.34.2",
49
- "@thi.ng/testament": "^0.3.12",
50
- "rimraf": "^4.1.2",
48
+ "@microsoft/api-extractor": "^7.34.4",
49
+ "@thi.ng/testament": "^0.3.14",
50
+ "rimraf": "^4.4.1",
51
51
  "tools": "^0.0.1",
52
- "typedoc": "^0.23.24",
53
- "typescript": "^4.9.5"
52
+ "typedoc": "^0.23.28",
53
+ "typescript": "^5.0.2"
54
54
  },
55
55
  "keywords": [
56
56
  "async",
@@ -94,5 +94,5 @@
94
94
  "status": "completed",
95
95
  "year": 2016
96
96
  },
97
- "gitHead": "8ab2cbfe2f59b7ef672b6e1cf2a43368f8437ddf\n"
97
+ "gitHead": "83b15b34326d480cbca0472b20390d4d3bbb792a\n"
98
98
  }