New Feature Updates, more coverage. (#385)

* Shouldn't be there.

* Removing

* Removing old libraries

* Updating

* Feature Changes and updates

* Update README.md
This commit is contained in:
B
2021-06-22 17:19:07 -03:00
committed by GitHub
parent 1a50be125a
commit cb6d70570d
10 changed files with 45 additions and 6287 deletions

View File

@@ -66,14 +66,20 @@ Every provider defines the features that it supports under `framework/{provider}
#### Features Available
The following features can be enabled or disabled. This means that the UI will remove all code related to the feature.
For example: Turning `cart` off will disable Cart capabilities.
- cart
- search
- wishlist
- customerAuth
- customCheckout
#### How to turn Features on and off
> NOTE: The selected provider should support the feature that you are toggling. (This means that you can't turn wishlist on if the provider doesn't support this functionality out the box)
- Open `commerce.config.json`
- Open `commerce.config.json`
- You'll see a config file like this:
```json
{
@@ -83,7 +89,7 @@ Every provider defines the features that it supports under `framework/{provider}
}
}
```
- Turn wishlist on by setting wishlist to true.
- Turn `wishlist` on by setting `wishlist` to `true`.
- Run the app and the wishlist functionality should be back on.
### How to create a new provider