You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
In the documentation for installing this app, it is detailed in the 3rd step ( Implementing the app's blocks in your store theme) that the app should be added as a dependency in the manifest. Because this app has billing options it will throw an error when trying to build the theme: error: App build failed with message: Error with dependency [email protected]: App cannot contain billing options: [email protected]
To Reproduce
Steps to reproduce the behaviour:
Add the [email protected] as a dependency in the store theme manifest
Try to link the theme in a vtex account
Building the theme will fail with the error message mentioned previously.
To solve
Update the documentation and specify that this app should be added as a peerDependency instead of a dependency.
peerDependencies apps are allowed to have billing options because they will be installed manually, but dependencies apps will be installed automatically, so they can not contain any billing options.
The text was updated successfully, but these errors were encountered:
Describe the bug
In the documentation for installing this app, it is detailed in the 3rd step ( Implementing the app's blocks in your store theme) that the app should be added as a
dependency
in the manifest. Because this app has billing options it will throw an error when trying to build the theme:error: App build failed with message: Error with dependency [email protected]: App cannot contain billing options: [email protected]
To Reproduce
Steps to reproduce the behaviour:
To solve
Update the documentation and specify that this app should be added as a
peerDependency
instead of a dependency.peerDependencies apps are allowed to have billing options because they will be installed manually, but dependencies apps will be installed automatically, so they can not contain any billing options.
The text was updated successfully, but these errors were encountered: