Skip to content

Commit

Permalink
Fix missing .js extensions on db adapters
Browse files Browse the repository at this point in the history
  • Loading branch information
danielnaab committed Aug 9, 2024
1 parent c669c04 commit 7721539
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/database/src/clients/kysely/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
export type { Database, DatabaseClient } from './types';
export { createInMemoryDatabase, createSqliteDatabase } from './sqlite3';
export type { Database, DatabaseClient } from './types.js';
export { createInMemoryDatabase, createSqliteDatabase } from './sqlite3.js';
1 change: 1 addition & 0 deletions packages/forms/src/pattern.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import * as r from '@atj/common';
import {
addPatternToFieldset,
type Blueprint,
type FormError,
type FormErrors,
Expand Down

0 comments on commit 7721539

Please sign in to comment.