From 3f3f5f9a79be2357e1ac6d57da5684acf86b40ea Mon Sep 17 00:00:00 2001 From: Innei Date: Thu, 27 Nov 2025 01:14:57 +0800 Subject: [PATCH] fix: update import path for AfilmoryManifest type - Changed the import path for AfilmoryManifest from '@afilmory/builder/types/manifest' to '@afilmory/builder/types/manifest.js' to ensure compatibility with the updated module structure. Signed-off-by: Innei --- packages/builder/src/manifest/migrations/v9-to-v10.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/builder/src/manifest/migrations/v9-to-v10.ts b/packages/builder/src/manifest/migrations/v9-to-v10.ts index bfdfbe87..4842db33 100644 --- a/packages/builder/src/manifest/migrations/v9-to-v10.ts +++ b/packages/builder/src/manifest/migrations/v9-to-v10.ts @@ -1,7 +1,7 @@ // exif.GPSAltitudeRef === 'Below Sea Level' => 1 // exif.GPSAltitudeRef === 'Above Sea Level' => 0 -import type { AfilmoryManifest } from '@afilmory/builder/types/manifest' +import type { AfilmoryManifest } from '@afilmory/builder/types/manifest.js' import type { ManifestMigrator, MigrationContext } from '../migrate'