Skip to content

Commit c5bd20e

Browse files
committed
...
1 parent 7ddcf00 commit c5bd20e

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

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/index.js'
22

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

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,7 +360,7 @@ The following example adds an `addIdColumn` method to `CreateTableBuilder`, whic
360360
in adding a PostgreSQL UUID primary key column:
361361

362362
```ts
363-
declare module 'kysely/dist/cjs/schema/create-table-builder' {
363+
declare module 'kysely' {
364364
interface CreateTableBuilder<TB extends string, C extends string = never> {
365365
addIdColumn<CN extends string = 'id'>(
366366
col?: CN

test/node/src/handle-empty-in-lists-plugin.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import {
22
HandleEmptyInListsPlugin,
33
pushValueIntoList,
44
replaceWithNoncontingentExpression,
5-
} from '../../../dist/cjs/index.js'
5+
} from '../../../dist/index.js'
66
import {
77
destroyTest,
88
initTest,

test/node/src/immediate-value-plugin.test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ import {
44
PostgresAdapter,
55
PostgresIntrospector,
66
PostgresQueryCompiler,
7-
} from '../../../'
8-
import { ImmediateValuePlugin } from '../../../dist/cjs/plugin/immediate-value/immediate-value-plugin.js'
7+
} from '../../../dist/index.js'
8+
import { ImmediateValuePlugin } from '../../../src/plugin/immediate-value/immediate-value-plugin.js'
99
import { Database, NOT_SUPPORTED, testSql } from './test-setup.js'
1010

1111
describe('ImmediateValuePlugin', () => {

test/node/src/object-util.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { isPlainObject } from '../../../dist/cjs/util/object-utils'
1+
import { isPlainObject } from '../../../src/util/object-utils.js'
22

33
import { expect } from './test-setup.js'
44

test/node/src/sanitize-identifiers.test.ts

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

33
import {
44
destroyTest,

0 commit comments

Comments
 (0)