diff --git a/packages/actify/package.json b/packages/actify/package.json index ad373a8..84ef29c 100644 --- a/packages/actify/package.json +++ b/packages/actify/package.json @@ -1,6 +1,6 @@ { "name": "actify", - "version": "0.3.1", + "version": "0.3.3", "license": "MIT", "author": "Lerte Smith", "keywords": [ diff --git a/packages/actify/rollup.config.mjs b/packages/actify/rollup.config.mjs index b397f42..2770dfa 100644 --- a/packages/actify/rollup.config.mjs +++ b/packages/actify/rollup.config.mjs @@ -1,5 +1,4 @@ import commonjs from '@rollup/plugin-commonjs' -import copy from 'rollup-plugin-copy' import { exec } from 'child_process' import json from '@rollup/plugin-json' import peerDepsExternal from 'rollup-plugin-peer-deps-external' @@ -67,12 +66,6 @@ export default [ typescriptPaths(), preserveDirectives(), terser({ compress: { directives: false } }), - copy({ - targets: [ - { src: './../../README.md', dest: 'dist' }, - { src: './../../LICENSE.md', dest: 'dist' } - ] - }), tscAlias() ], onwarn(warning, warn) { diff --git a/packages/actify/src/components/Carousel/CarouselContent.tsx b/packages/actify/src/components/Carousel/CarouselContent.tsx index cf7b5d3..b2cc34d 100644 --- a/packages/actify/src/components/Carousel/CarouselContent.tsx +++ b/packages/actify/src/components/Carousel/CarouselContent.tsx @@ -3,7 +3,7 @@ import { AnimatePresence, motion } from 'framer-motion' import React, { Children, isValidElement, useEffect } from 'react' -import { twMerge } from 'tailwind-merge' +import clsx from 'clsx' import { useCarousel } from './CarouselContext' import { wrap } from 'popmotion' @@ -58,8 +58,7 @@ const CarouselContent = ({ children }: React.ComponentProps<'div'>) => {