Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency typescript to v5 #992

Merged
merged 2 commits into from
Jul 27, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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