Skip to content

Commit

Permalink
Merge pull request #19 from marcosrjjunior/15_type_tweak
Browse files Browse the repository at this point in the history
#15 type tweak
  • Loading branch information
acro5piano committed Feb 27, 2024
2 parents f92ddee + 86c2e3e commit 70fffc4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -96,7 +96,7 @@ The `create` command generates a migration boilorplate with the current timestam

<!-- prettier-ignore -->
```ts
import { Kysely } from 'kysely'
import { type Kysely } from 'kysely'

export async function up(db: Kysely<any>): Promise<void> {
}
Expand Down
2 changes: 1 addition & 1 deletion src/run.ts
Expand Up @@ -99,7 +99,7 @@ export function run(db: Kysely<any>, migrator: Migrator, path: string = './migra
program.parseAsync().then(() => db.destroy())
}

const TEMPLATE = `import { Kysely } from 'kysely'
const TEMPLATE = `import { type Kysely } from 'kysely'
export async function up(db: Kysely<any>): Promise<void> {
}
Expand Down

0 comments on commit 70fffc4

Please sign in to comment.