Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade docusaurus to 2.0.0.beta.14 from beta.9 #1249

Merged
merged 5 commits into from
Jan 11, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions website/docs/addons/addons.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ Unleash Addons allows you to extend Unleash with new functionality. Currently, a

Currently Unleash support the following Addons out of the box:

- [Webhook](./webhook) - A generic way to post messages from Unleash to third party services.
- [Slack](./slack) - Allows Unleash to post updates to Slack.
- [Microsoft Teams](./teams) - Allows Unleash to post updates to Microsoft Teams.
- [Datadog](./datadog) -allows Unleash to post Updates to Datadog when a feature toggle is updated.
- [Webhook](webhook.md) - A generic way to post messages from Unleash to third party services.
- [Slack](slack.md) - Allows Unleash to post updates to Slack.
- [Microsoft Teams](teams.md) - Allows Unleash to post updates to Microsoft Teams.
- [Datadog](datadog.md) -allows Unleash to post Updates to Datadog when a feature toggle is updated.

In future releases we plan to support community built addons.

Expand Down
6 changes: 5 additions & 1 deletion website/docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ module.exports = {
activeBaseRegex: '(user_guide|sdks|addons|advanced)',
},
{ to: 'deploy/getting_started', label: 'Deploy and manage' },
{ to: 'integrations/integrations', label: 'Integrations' },
{ to: 'integrations', label: 'Integrations' },
{ to: '/api', label: 'API' },
{
href: 'https://www.getunleash.io/plans',
Expand Down Expand Up @@ -146,6 +146,10 @@ module.exports = {
to: '/advanced/toggle_variants',
from: '/toggle_variants',
},
{
to: '/integrations',
from: '/integrations/integrations',
},
thomasheartman marked this conversation as resolved.
Show resolved Hide resolved
],
createRedirects: function(toPath) {
if (
Expand Down
6 changes: 3 additions & 3 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@
"write-heading-ids": "docusaurus write-heading-ids"
},
"dependencies": {
"@docusaurus/core": "2.0.0-beta.9",
"@docusaurus/plugin-client-redirects": "2.0.0-beta.9",
"@docusaurus/preset-classic": "2.0.0-beta.9",
"@docusaurus/core": "2.0.0-beta.14",
"@docusaurus/plugin-client-redirects": "2.0.0-beta.14",
"@docusaurus/preset-classic": "2.0.0-beta.14",
"@docusaurus/remark-plugin-npm2yarn": "2.0.0-beta.14",
"@mdx-js/react": "1.6.22",
"@svgr/webpack": "6.1.2",
Expand Down