Add lodash.debounce to Shopify provider package.json dependencies (#691)

* Add lodash.debounce to package.json dependencies

Shopify provider requires `lodash.debounce` package. This package is installed in BigCommerce provider, but not in Shopify provider. After BigCommerce is removed, Shopfify provider can't be installed.

This PR fixes this error

* Install lodash debounce and its @types to providers that use this package
This commit is contained in:
Lukasz Ostrowski
2022-03-16 15:27:13 +01:00
committed by GitHub
parent 38df404ab5
commit ee62ea659a
7 changed files with 21 additions and 7 deletions

View File

@@ -50,7 +50,8 @@
},
"dependencies": {
"@vercel/commerce": "^0.0.1",
"@vercel/fetch": "^6.1.1"
"@vercel/fetch": "^6.1.1",
"lodash.debounce": "^4.0.8"
},
"peerDependencies": {
"next": "^12",
@@ -65,6 +66,7 @@
"@taskr/clear": "^1.1.0",
"@taskr/esnext": "^1.1.0",
"@taskr/watch": "^1.1.0",
"@types/lodash.debounce": "^4.0.6",
"@types/node": "^17.0.8",
"@types/react": "^17.0.38",
"dotenv": "^12.0.3",