From 15ff1708b88da97bb990fac1b9060e004430e2db Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Tue, 24 Sep 2019 12:21:44 +0300 Subject: [PATCH 1/2] Temp: run linkinator against the live site --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 91937a9ab..16c625f8a 100644 --- a/package.json +++ b/package.json @@ -56,8 +56,9 @@ "docs-build": "hugo --cleanDestinationDir", "docs-compile": "npm run docs-build", "docs-linkinator": "linkinator _gh_pages --recurse --silent --skip \"^(?!http://localhost)\"", + "docs-linkinator-prod": "linkinator https://getbootstrap.com --recurse --silent --skip \"^(https://developer.microsoft.com)|(https://github.com/twbs/bootstrap/releases/)\"", "docs-vnu": "node build/vnu-jar.js", - "docs-lint": "npm-run-all --parallel docs-vnu docs-linkinator", + "docs-lint": "npm-run-all --parallel docs-vnu docs-linkinator-prod", "docs-serve": "hugo server --port 9001 --disableFastRender", "docs-serve-only": "npx sirv-cli _gh_pages --port 9001", "lockfile-lint": "lockfile-lint --allowed-hosts npm --allowed-schemes https: --empty-hostname false --type npm --path package-lock.json", From 33769498779dc5a41e33ebe7a5dbb9c2de9f1e51 Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sun, 1 Mar 2020 09:26:37 +0200 Subject: [PATCH 2/2] Add `--concurrency 10` --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 16c625f8a..f4b2d12a6 100644 --- a/package.json +++ b/package.json @@ -56,7 +56,7 @@ "docs-build": "hugo --cleanDestinationDir", "docs-compile": "npm run docs-build", "docs-linkinator": "linkinator _gh_pages --recurse --silent --skip \"^(?!http://localhost)\"", - "docs-linkinator-prod": "linkinator https://getbootstrap.com --recurse --silent --skip \"^(https://developer.microsoft.com)|(https://github.com/twbs/bootstrap/releases/)\"", + "docs-linkinator-prod": "linkinator https://getbootstrap.com --concurrency 10 --recurse --silent --skip \"^(https://developer.microsoft.com)|(https://github.com/twbs/bootstrap/releases/)\"", "docs-vnu": "node build/vnu-jar.js", "docs-lint": "npm-run-all --parallel docs-vnu docs-linkinator-prod", "docs-serve": "hugo server --port 9001 --disableFastRender",