1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fix broken links in docs with WIP files

Signed-off-by: Sebastian Malton <sebastian@malton.name>
This commit is contained in:
Sebastian Malton 2020-11-26 13:07:16 -05:00
parent 4811424682
commit 15d887010f
8 changed files with 16 additions and 4 deletions

View File

@ -39,4 +39,4 @@ jobs:
- name: Verify that the markdown is valid
run: |
yarn run mkdocs-verify
yarn run verify-docs

View File

@ -43,7 +43,7 @@ jobs:
- name: Verify that the markdown is valid
run: |
yarn run mkdocs-verify
yarn run verify-docs
- name: Generate Extensions API Reference using typedocs
run: |

View File

@ -14,7 +14,7 @@ Here are some examples of what you can achieve with the Extension API:
* Add custom components & views in the UI - Extending the Lens Workbench
For an overview of the Lens Extension API, refer to the [Common Capabilities](capabilities/common-capabilities.md) page. [Extension Guides Overview](guides/overview.md) also includes a list of code samples and guides that illustrate various ways of using the Lens Extension API.
For an overview of the Lens Extension API, refer to the [Common Capabilities](capabilities/common-capabilities.md) page. [Extension Guides Overview](guides/README.md) also includes a list of code samples and guides that illustrate various ways of using the Lens Extension API.
## How to Build Extensions

View File

@ -0,0 +1,3 @@
---
WIP
---

View File

@ -0,0 +1,3 @@
---
WIP
---

View File

@ -0,0 +1,3 @@
---
WIP
---

View File

@ -0,0 +1,3 @@
---
WIP
---

View File

@ -40,7 +40,7 @@
"lint": "yarn run eslint $@ --ext js,ts,tsx --max-warnings=0 src/ integration/ __mocks__/ build/ extensions/",
"lint:fix": "yarn run lint --fix",
"mkdocs-serve-local": "docker build -t mkdocs-serve-local:latest mkdocs/ && docker run --rm -it -p 8000:8000 -v ${PWD}:/docs mkdocs-serve-local:latest",
"mkdocs-verify": "docker build -t mkdocs-serve-local:latest mkdocs/ && docker run --rm -v ${PWD}:/docs mkdocs-serve-local:latest build --strict",
"verify-docs": "docker build -t mkdocs-serve-local:latest mkdocs/ && docker run --rm -v ${PWD}:/docs mkdocs-serve-local:latest build --strict",
"typedocs-extensions-api": "yarn run typedoc --ignoreCompilerErrors --readme docs/extensions/typedoc-readme.md.tpl --name @k8slens/extensions --out docs/extensions/api --mode library --excludePrivate --hideBreadcrumbs --includes src/ src/extensions/extension-api.ts"
},
"config": {