use-ackee icon indicating copy to clipboard operation
use-ackee copied to clipboard

react version update and ts conversion

Open TristonWasik opened this issue 3 years ago • 2 comments

updated to react v18 converted to typescript and added use-ackee types as dependency initialized ackeeInstance outside of the hook to allow actions to be utilized fixed package.json to use esm variant imports added additional test case updated all imports

TristonWasik avatar Oct 17 '22 07:10 TristonWasik

Well, this package should be compatible with version >=16.8. It only uses the useMemo and useEffect hooks. These two hooks' behavior has no change in React 16.8.x, React 17.x and React 18.x

{
    "peerDependencies": {
        "react": ">=16.8"
    }
}

mrdulin avatar Jul 04 '23 09:07 mrdulin

Well, this package should be compatible with version >=16.8. It only uses the useMemo and useEffect hooks. These two hooks' behavior has no change in React 16.8.x, React 17.x and React 18.x

{
    "peerDependencies": {
        "react": ">=16.8"
    }
}

Opening a PR with just peer dependency updates, consciously adding specific version. #13

nareshpingale avatar Jun 13 '24 08:06 nareshpingale