Skip to content

Commit 2f7cdc9

Browse files
committed
Fix page title, adjust link-check scripts
Signed-off-by: Patrice Chalin <[email protected]>
1 parent 97a0fff commit 2f7cdc9

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
.cache-loader
44
/build
55

6+
# Astro
7+
.astro
8+
dist
9+
610
# npm assets
711
node_modules/
812
package-lock.json

docs/versioning-documentation.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
---
2-
title: prettier-ignore
2+
title: Doc Versioning with Hugo & Netlify
33
# prettier-ignore
44
cSpell:ignore: Batard Brubaker Pursley velero fullversion githubbranch docsbranch Tanzu Rosland Horgan Takahashi
55
---
66

7-
# Technical Documentation Versioning with Hugo & Netlify
7+
# Doc Versioning with Hugo & Netlify
88

99
Technical Documents Versioning is an intersection of:
1010

package.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@
44
"description": "Resources provided by the CNCF Technical Documentation team.",
55
"scripts": {
66
"_build": "docusaurus build",
7+
"__check:links": "make --keep-going check-links",
78
"_check:format:any": "npx prettier --check --ignore-path ''",
89
"_check:format:delta": "npm run _check:format:any -- $(npm run -s _list:git:delta)",
910
"_check:format": "npx prettier --check .",
10-
"_check:links": "make --keep-going check-links",
11+
"_check:links:internal": "npm run __check:links -- HTMLTEST_ARGS='--skip-external'",
12+
"_check:links": "npm run __check:links --",
1113
"_check:links-md": "bash -c 'for f in *.md `find analyses -name \"*.md\"`; do npx markdown-link-check --config .markdown-link-check.json -p -v $f || exit 1; done'",
1214
"_check:markdown:all": "npm run -s _list:check:md | xargs -I {} -P 4 npx -p markdownlint-cli markdownlint -c .markdownlint.yaml {}",
1315
"_check:markdown:delta": "npm run -s _list:git:delta | xargs -I {} npx -p markdownlint-cli markdownlint -c .markdownlint.yaml {}",
@@ -65,7 +67,7 @@
6567
"typescript": "~5.8.3"
6668
},
6769
"private": true,
68-
"spelling": "cSpell:ignore ACMR loglevel pkgs -",
70+
"spelling": "cSpell:ignore ACMR HTMLTEST loglevel pkgs -",
6971
"prettier": {
7072
"proseWrap": "always",
7173
"singleQuote": true

0 commit comments

Comments
 (0)