Skip to content

Commit

Permalink
chore: fix build issues + deps update
Browse files Browse the repository at this point in the history
  • Loading branch information
PHILLIPS71 committed Jul 23, 2024
1 parent ff5f471 commit 5465797
Show file tree
Hide file tree
Showing 5 changed files with 1,322 additions and 1,416 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@giantnodes/prettier-config": "workspace:*",
"husky": "^9.0.11",
"prettier": "^3.3.1",
"husky": "^9.1.1",
"prettier": "^3.3.3",
"tsup": "^6.6.0",
"turbo": "^2.0.4",
"typescript": "^5.4.5"
"turbo": "^2.0.9",
"typescript": "^5.5.4"
},
"engines": {
"node": ">=16.x",
Expand Down
10 changes: 5 additions & 5 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
"next-themes": "^0.3.0",
"react-aria": "^3.33.1",
"react-aria-components": "^1.2.1",
"tailwind-merge": "^2.3.0",
"tailwind-merge": "^2.4.0",
"tailwindcss-react-aria-components": "^1.1.3"
},
"devDependencies": {
Expand All @@ -56,16 +56,16 @@
"autoprefixer": "^10.4.19",
"concurrently": "^8.2.2",
"jest": "^29.7.0",
"postcss": "^8.4.38",
"postcss": "^8.4.39",
"prop-types": "15.8.1",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"resolve-tspaths": "^0.8.19",
"storybook": "^8.1.10",
"tailwindcss": "^3.4.4",
"ts-jest": "^29.1.2",
"tailwindcss": "^3.4.6",
"ts-jest": "^29.2.3",
"ts-node": "^10.9.2",
"vite": "^5.3.1"
"vite": "^5.3.4"
},
"peerDependencies": {
"react": ">=18",
Expand Down
3 changes: 2 additions & 1 deletion packages/react/src/components/breadcrumb/BreadcrumbItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { Breadcrumb, Link } from 'react-aria-components'

import type * as Polymophic from '~/utilities/polymorphic'
import { useBreadcrumbContext } from '~/components/breadcrumb/use-breadcrumb.hook'
import { cn } from '~/utilities'

const __ELEMENT_TYPE__ = 'span'

Expand Down Expand Up @@ -35,7 +36,7 @@ const Component: ComponentType = React.forwardRef(

const component = React.useMemo<Omit<BreadcrumbProps, 'children'>>(
() => ({
className: slots.item({ className }),
className: slots.item({ className: cn(className) }),
...rest,
}),
[className, rest, slots]
Expand Down
Loading

0 comments on commit 5465797

Please sign in to comment.