Fix docker images (#7146)

* fix docker images

* release notes
This commit is contained in:
Michael Clark
2026-03-06 22:55:21 +00:00
committed by GitHub
parent 8bb7f207f2
commit b727124603
2 changed files with 9 additions and 1 deletions

View File

@@ -28,7 +28,9 @@ export async function run(direction: 'up' | 'down' = 'up'): Promise<void> {
> = {};
for (const f of files
.filter(f => f.endsWith('.js') || f.endsWith('.ts'))
.filter(
f => (f.endsWith('.js') || f.endsWith('.ts')) && !f.endsWith('.d.ts'),
)
.sort()) {
migrationsModules[f] = await import(
pathToFileURL(path.join(migrationsDir, f)).href