feat: use latest version of redoc cli #164
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
On this day, the unpk.com provider was down for a few hours. During this time, our bonita-openapi search was broken.
To avoid similar issue in the future, we remove a usage a deprecated version of redoc-cli and use the "new" library -> "@redocly/cli".
Before this PR, when we use the redoc-cli, we got this line in the index.html
<script src="https://unpkg.com/redoc@latest/bundles/redoc.standalone.js"></script><style data-styled="true" data-styled-version="5.3.0">.juinod{width:calc(100% - 40%);padding:0 40px;}/*!sc*/
But this unpkg link are down since this morning and the searchbar on this documentation are broken.
With this PR, we load this library in another cdn:
<script src="https://cdn.redoc.ly/redoc/v2.1.3/bundles/redoc.standalone.js"></script>