Skip to content

Commit c876d89

Browse files
committed
rename
1 parent ccdf373 commit c876d89

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

packages/migra/src/command.ts

+10-10
Original file line numberDiff line numberDiff line change
@@ -6,29 +6,29 @@ import {trpcCli, TrpcCliMeta} from 'trpc-cli'
66
import {z} from 'zod'
77
import {Migration} from './migra'
88

9-
// todo: deviation: always return a PostgreSQL instance, and make `Migration.create` only accept PostgreSQL instances
10-
const argContext = async (x: Queryable | string): Promise<PostgreSQL | Queryable> => {
11-
if (typeof x !== 'string') {
12-
return x
9+
// deviation: always return a PostgreSQL instance, and make `Migration.create` only accept PostgreSQL instances
10+
const argContext = async (connInfo: Queryable | string): Promise<PostgreSQL | Queryable> => {
11+
if (typeof connInfo !== 'string') {
12+
return connInfo
1313
}
1414

15-
if (x === 'EMPTY') {
15+
if (connInfo === 'EMPTY') {
1616
return PostgreSQL.empty()
1717
}
1818

19-
if (x.startsWith('file://')) {
20-
const url = new URL(x)
19+
if (connInfo.startsWith('file://')) {
20+
const url = new URL(connInfo)
2121
if (url.hostname) throw new Error(`Not implemented: can only read files from localhost (got ${url.hostname})`)
2222
const content = await readFile(url.pathname, 'utf8')
2323
return PostgreSQL.fromJSON(JSON.parse(content))
2424
}
2525

26-
if (/^https?:\/\//.test(x)) {
27-
const response = await fetch(x)
26+
if (/^https?:\/\//.test(connInfo)) {
27+
const response = await fetch(connInfo)
2828
return PostgreSQL.fromJSON(await response.json())
2929
}
3030

31-
return createClient(x)
31+
return createClient(connInfo)
3232
}
3333

3434
export const run = async (dburlFrom: Queryable | string, dburlTarget: Queryable | string, args: MigraOptions = {}) => {

0 commit comments

Comments
 (0)