Upgrade dependencies & pnpm (#785)

* Updated log

* Updates to root

* Updates to pnpm

* successfully moved to pnpm

* type issue

* Local as the default provider

* Upgrade dependencies

* Revert to local

* Upgrade React

* Update node-fetch deps

* Fix types

* Ignore warnings

* Fix missing dependency

* Update pnpm-lock.yaml

* Add missing @types/cookie

* Upgrade dependencies

* Fix missing dependencies

* Update README.md

Co-authored-by: Bel Curcio <curciobel@gmail.com>
This commit is contained in:
Catalin Pinte
2022-09-19 08:14:49 +03:00
committed by GitHub
parent 87134e2990
commit 11609a9e71
46 changed files with 10129 additions and 8084 deletions

View File

@@ -48,31 +48,35 @@
}
},
"dependencies": {
"@vercel/commerce": "^0.0.1",
"@vercel/fetch": "^6.1.1",
"swell-js": "^4.0.0-next.0",
"lodash.debounce": "^4.0.8"
"@vercel/commerce": "workspace:*",
"@vercel/fetch": "^6.2.0",
"js-cookie": "^3.0.1",
"lodash.debounce": "^4.0.8",
"node-fetch": "^2.6.7",
"swell-js": "^4.0.0-next.0"
},
"peerDependencies": {
"next": "^12",
"react": "^17",
"react-dom": "^17"
"react": "^18",
"react-dom": "^18"
},
"devDependencies": {
"@taskr/clear": "^1.1.0",
"@taskr/esnext": "^1.1.0",
"@taskr/watch": "^1.1.0",
"@types/js-cookie": "^3.0.2",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"@types/node-fetch": "^2.6.2",
"@types/react": "^18.0.14",
"lint-staged": "^12.1.7",
"next": "^12.0.8",
"prettier": "^2.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"taskr": "^1.1.0",
"taskr-swc": "^0.0.1",
"typescript": "^4.5.4"
"typescript": "^4.7.4"
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx,json}": [

View File

@@ -45,7 +45,7 @@ export const handler = {
const { mutate } = useCart()
return useCallback(
async function removeItem(input) {
async function removeItem(input: { id: string }) {
const data = await fetch({ input: { itemId: input.id } })
await mutate(data, false)