Skip to content

Commit 663fc94

Browse files
committed
...
1 parent 5af758d commit 663fc94

75 files changed

Lines changed: 101 additions & 114 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

outdated-typescript.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import type { KyselyTypeError } from './dist/cjs/util/type-error'
1+
import type { KyselyTypeError } from './dist/util/type-error'
22

33
declare const Kysely: KyselyTypeError<'The installed TypeScript version is outdated and cannot guarantee type-safety with Kysely. Please upgrade to version 5.4 or newer.'>
44
declare const RawBuilder: KyselyTypeError<'The installed TypeScript version is outdated and cannot guarantee type-safety with Kysely. Please upgrade to version 5.4 or newer.'>

site/docs/recipes/0010-extending-kysely.md

Lines changed: 1 addition & 1 deletion

test/bun/bun.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import {
99
MysqlDialect,
1010
sql,
1111
MssqlDialect,
12-
} from '../../dist/esm/index.js'
12+
} from '../../dist/index.js'
1313

1414
interface Person {
1515
id: Generated<number>

test/deno/local.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
PostgresDialect,
55
MysqlDialect,
66
sql,
7-
} from '../../dist/esm/index.js'
7+
} from '../../dist/index.js'
88
import { createPool } from 'mysql2'
99
import Pool from 'pg-pool'
1010

test/node/src/aggregate-function.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
SimpleReferenceExpression,
55
ReferenceExpression,
66
sql,
7-
} from '../../../dist/cjs/index.js'
7+
} from '../../../dist/index.js'
88
import {
99
Database,
1010
destroyTest,

test/node/src/array.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { Generated, Kysely, sql } from '../../../dist/cjs/index.js'
1+
import { Generated, Kysely, sql } from '../../../dist/index.js'
22

33
import {
44
destroyTest,

test/node/src/async-dispose.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import {
1010
QueryResult,
1111
RootOperationNode,
1212
sql,
13-
} from '../../../dist/cjs/index.js'
13+
} from '../../../dist/index.js'
1414
import { expect } from './test-setup.js'
1515

1616
describe('async dispose', function () {

test/node/src/camel-case.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import {
55
ParseJSONResultsPlugin,
66
RawBuilder,
77
sql,
8-
} from '../../../dist/cjs/index.js'
8+
} from '../../../dist/index.js'
99

1010
import {
1111
destroyTest,

test/node/src/case.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { sql } from '../../../dist/cjs/index.js'
1+
import { sql } from '../../../dist/index.js'
22
import {
33
DIALECTS,
44
TestContext,

test/node/src/coalesce.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { sql } from '../../../dist/cjs/index.js'
1+
import { sql } from '../../../dist/index.js'
22
import {
33
clearDatabase,
44
destroyTest,

0 commit comments

Comments
 (0)