@contrast/route-coverage 1.24.0 → 1.25.0

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 (2) hide show
  1. package/lib/index.d.ts +2 -2
  2. package/package.json +6 -6
package/lib/index.d.ts CHANGED
@@ -15,9 +15,9 @@
15
15
 
16
16
  import { Installable, Messages, RouteInfo } from '@contrast/common';
17
17
  import { Config } from '@contrast/config';
18
+ import { DepHooks } from '@contrast/dep-hooks';
18
19
  import { Logger } from '@contrast/logger';
19
20
  import { Patcher } from '@contrast/patcher';
20
- import RequireHook from '@contrast/require-hook';
21
21
  import { Scopes } from '@contrast/scopes';
22
22
 
23
23
  export { RouteInfo };
@@ -32,7 +32,7 @@ export interface RouteCoverage extends Installable {
32
32
 
33
33
  export interface Core {
34
34
  readonly config: Config;
35
- readonly depHooks: RequireHook;
35
+ readonly depHooks: DepHooks;
36
36
  readonly logger: Logger;
37
37
  readonly messages: Messages;
38
38
  readonly patcher: Patcher;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contrast/route-coverage",
3
- "version": "1.24.0",
3
+ "version": "1.25.0",
4
4
  "description": "Handles route discovery and observation",
5
5
  "license": "SEE LICENSE IN LICENSE",
6
6
  "author": "Contrast Security <nodejs@contrastsecurity.com> (https://www.contrastsecurity.com)",
@@ -18,11 +18,11 @@
18
18
  },
19
19
  "dependencies": {
20
20
  "@contrast/common": "1.25.0",
21
- "@contrast/config": "1.32.0",
22
- "@contrast/dep-hooks": "1.4.0",
21
+ "@contrast/config": "1.33.0",
22
+ "@contrast/dep-hooks": "1.5.0",
23
23
  "@contrast/fn-inspect": "^4.3.0",
24
- "@contrast/logger": "1.9.0",
25
- "@contrast/patcher": "1.8.0",
26
- "@contrast/scopes": "1.5.0"
24
+ "@contrast/logger": "1.10.0",
25
+ "@contrast/patcher": "1.9.0",
26
+ "@contrast/scopes": "1.6.0"
27
27
  }
28
28
  }