Skip to content

Commit

Permalink
Merge branch 'main' into types
Browse files Browse the repository at this point in the history
  • Loading branch information
leo authored Jan 31, 2025
2 parents 340434f + 6e26fce commit cc21ab9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
Binary file modified bun.lockb
Binary file not shown.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": [
Expand All @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/components/image.client.tsx
Original file line number Diff line number Diff line change
@@ -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'];

Expand Down

0 comments on commit cc21ab9

Please sign in to comment.