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:
parent
4811424682
commit
15d887010f
2
.github/workflows/check-docs.yml
vendored
2
.github/workflows/check-docs.yml
vendored
@ -39,4 +39,4 @@ jobs:
|
||||
|
||||
- name: Verify that the markdown is valid
|
||||
run: |
|
||||
yarn run mkdocs-verify
|
||||
yarn run verify-docs
|
||||
|
||||
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
@ -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: |
|
||||
|
||||
@ -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
|
||||
|
||||
|
||||
3
docs/extensions/guides/anatomy.md
Normal file
3
docs/extensions/guides/anatomy.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
WIP
|
||||
---
|
||||
3
docs/extensions/guides/components.md
Normal file
3
docs/extensions/guides/components.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
WIP
|
||||
---
|
||||
3
docs/extensions/guides/kube-object-list-layout.md
Normal file
3
docs/extensions/guides/kube-object-list-layout.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
WIP
|
||||
---
|
||||
3
docs/extensions/guides/stores.md
Normal file
3
docs/extensions/guides/stores.md
Normal file
@ -0,0 +1,3 @@
|
||||
---
|
||||
WIP
|
||||
---
|
||||
@ -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": {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user