Skip to content

Commit

Permalink
fix: remove absolute import paths in types. Fixes #974
Browse files Browse the repository at this point in the history
  • Loading branch information
mefellows committed Nov 14, 2022
1 parent faeb2c9 commit a20ad80
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/dsl/verifier/proxy/types.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import * as express from 'express';
import { LogLevel } from '../../options';
import { JsonMap, AnyJson } from '../../../common/jsonTypes';
import { MessageProviders } from 'dsl/message';
import { MessageProviders } from '../../message';

export type Hook = () => Promise<unknown>;

Expand Down
2 changes: 1 addition & 1 deletion src/dsl/verifier/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { VerifierOptions as PactCoreVerifierOptions } from '@pact-foundation/pact-core';
import { MessageProviderOptions } from 'dsl/options';
import { MessageProviderOptions } from '../options';

import { ProxyOptions } from './proxy/types';

Expand Down

0 comments on commit a20ad80

Please sign in to comment.