Skip to content

Commit 1d16a76

Browse files
committedNov 14, 2022
fix: remove all remaining absolute imports
1 parent 94584bf commit 1d16a76

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed
 

‎src/httpPact/ffi.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
import { Matcher, matcherValueOrString } from '../dsl/matchers';
1010
import { forEachObjIndexed } from 'ramda';
1111
import { isArray } from 'util';
12-
import { AnyTemplate } from 'v3/matchers';
12+
import { AnyTemplate } from '../v3/matchers';
1313

1414
// eslint-disable-next-line
1515
enum INTERACTION_PART {

‎src/v4/http/types.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
V3ProviderState,
99
V3Request,
1010
V3Response,
11-
} from 'v3';
11+
} from '../../v3';
1212
import { AnyTemplate } from '../../v3/matchers';
1313

1414
// TODO: do we alias all types to V4 or is this yicky??

‎src/v4/message/types.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
import { Metadata } from 'dsl/message';
2-
import { AnyTemplate } from 'v3/matchers';
31
import { AnyJson, JsonMap } from '../../common/jsonTypes';
2+
import { Metadata } from '../../dsl/message';
3+
import { AnyTemplate } from '../../v3/matchers';
44

55
// eslint-disable-next-line @typescript-eslint/no-empty-interface
66
export interface MessageContents {

0 commit comments

Comments
 (0)
Please sign in to comment.