Skip to content

Commit

Permalink
fix(client): fixes absolute imports for types
Browse files Browse the repository at this point in the history
  • Loading branch information
kiiwiz committed May 31, 2021
1 parent 99df8fe commit eba4aeb
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"knex": "^0.95.4",
"pg": "^8.4.1",
"promise-mysql": "^4.1.3",
"relational-schema": "^0.4.2",
"relational-schema": "^0.4.3",
"ts-jest": "^24.2.0",
"ts-node": "^9.1.1",
"ts-node-dev": "^1.1.1",
Expand All @@ -89,6 +89,6 @@
"knex": "^0.95.4",
"pg": "^8.4.1",
"promise-mysql": "^4.1.3",
"relational-schema": "^0.4.2"
"relational-schema": "^0.4.3"
}
}
2 changes: 1 addition & 1 deletion src/generate/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { join } from 'path';
import { LogLevel } from 'src/types';
import { LogLevel } from '../types';
import { buildClient, buildEntryPoint, buildTableClients } from './client-builder';
import { logger } from './logger';
import { writeFormattedFile } from './printer';
Expand Down
2 changes: 1 addition & 1 deletion src/query-client/query-builder/client.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Knex } from 'knex';
import { ClientEngine, LogLevel } from 'src/types';
import { ClientEngine, LogLevel } from '../../types';
import { Connection, GybsonConfig, Logger } from '..';
import { buildLogger, logger } from '../lib/logging';

Expand Down

0 comments on commit eba4aeb

Please sign in to comment.