diff --git a/bun.lockb b/bun.lockb index 32a0928..e8a6a3b 100755 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index f7c48c6..21fcfd3 100644 --- a/package.json +++ b/package.json @@ -17,7 +17,7 @@ "lint:tsc": "tsc --pretty", "format": "biome check --write && biome format --write", "test": "bun test", - "build": "tsup ./src/index.ts --dts --format esm", + "build": "tsup ./src/index.ts --dts-resolve --format esm", "prepare": "bun run build" }, "keywords": [ @@ -30,6 +30,7 @@ "license": "Apache-2.0", "devDependencies": { "@biomejs/biome": "1.9.4", + "@ronin/compiler": "0.14.14", "@types/bun": "1.2.1", "@types/react": "18.3.1", "msw": "2.7.0", diff --git a/src/components/image.client.tsx b/src/components/image.client.tsx index a65468b..2834b6e 100644 --- a/src/components/image.client.tsx +++ b/src/components/image.client.tsx @@ -1,7 +1,7 @@ 'use client'; +import type { StoredObject } from '@ronin/compiler'; import { forwardRef, useCallback, useRef } from 'react'; -import type { StoredObject } from 'ronin/types'; const supportedFitValues = ['fill', 'contain', 'cover'];