Skip to content

Commit

Permalink
fix: remove unused type
Browse files Browse the repository at this point in the history
  • Loading branch information
felixmosh committed Jun 22, 2021
1 parent 07595e1 commit 5920e74
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,14 @@
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs"
},
"hooks": {
"after:bump": "npx auto-changelog -p"
"before:init": [
"yarn lint",
"yarn test"
],
"after:bump": [
"npx auto-changelog -p",
"yarn build"
]
},
"github": {
"release": true
Expand Down
2 changes: 0 additions & 2 deletions src/Tracker.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
import { Knex } from 'knex';
import cloneDeep from 'lodash.clonedeep';
import { FunctionQueryMatcher, QueryMatcher, RawQuery } from '../types/mock-client';
import { queryMethods, transactionCommands } from './constants';
import Raw = Knex.Raw;

export type TrackerConfig = Record<string, unknown>;

Expand Down

0 comments on commit 5920e74

Please sign in to comment.