Skip to content

Commit

Permalink
chore(deps): update dependency typescript to v5 (#992)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Shinigami92 <[email protected]>
  • Loading branch information
renovate[bot] and Shinigami92 authored Jul 27, 2024
1 parent 1f615b9 commit 44bf8e0
Show file tree
Hide file tree
Showing 5 changed files with 66 additions and 66 deletions.
2 changes: 1 addition & 1 deletion bin/node-pg-migrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import type { DotenvConfigOptions } from 'dotenv';
// Import as node-pg-migrate, so tsup does not self-reference as '../dist'
// otherwise this could not be imported by esm
// @ts-ignore: when a clean was made, the types are not present in the first run
import { default as migrationRunner, Migration } from 'node-pg-migrate';
import { Migration, default as migrationRunner } from 'node-pg-migrate';
import { readFileSync } from 'node:fs';
import { createRequire } from 'node:module';
import { join, resolve } from 'node:path';
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@
"rimraf": "6.0.1",
"ts-node": "10.9.2",
"tsup": "8.2.3",
"typescript": "4.9.5",
"typescript": "5.5.4",
"vitepress": "1.3.1",
"vitest": "2.0.4"
},
Expand Down
124 changes: 62 additions & 62 deletions pnpm-lock.yaml

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

2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -264,5 +264,5 @@ export type {
export { runner as default, runner } from './runner';
export { PgType } from './types';
export type { MigrationBuilder, RunnerOption } from './types';
export { isPgLiteral, PgLiteral } from './utils';
export { PgLiteral, isPgLiteral } from './utils';
export type { PgLiteralValue } from './utils';
2 changes: 1 addition & 1 deletion src/utils/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export { getSchemas } from './getSchemas';
export { identity } from './identity';
export { intersection } from './intersection';
export { makeComment } from './makeComment';
export { isPgLiteral, PgLiteral } from './PgLiteral';
export { PgLiteral, isPgLiteral } from './PgLiteral';
export type { PgLiteralValue } from './PgLiteral';
export { quote } from './quote';
export { StringIdGenerator } from './StringIdGenerator';
Expand Down

0 comments on commit 44bf8e0

Please sign in to comment.