From: XhmikosR Date: Sun, 4 Nov 2018 07:59:31 +0000 (+0200) Subject: broken-link-checker: force follow links. X-Git-Tag: v4.2.0~152 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ca47a21b707ff6f88aa119554374c48c9a5ef08f;p=thirdparty%2Fbootstrap.git broken-link-checker: force follow links. After 3256a2c, blc honored robots.txt thus it didn't crawl anything. Ignore robots.txt to work around the issue. --- diff --git a/package.json b/package.json index 88cb127eaa..ae21379abc 100644 --- a/package.json +++ b/package.json @@ -19,7 +19,7 @@ ], "scripts": { "start": "npm-run-all --parallel watch docs-serve", - "blc": "blc --exclude-external --filter-level 3 --get --ordered --recursive --host-requests 4 --input http://localhost:3000/", + "blc": "blc --exclude-external --filter-level 3 --follow --get --ordered --recursive --host-requests 4 --input http://localhost:3000/", "http-server": "http-server --silent -p 3000", "bundlesize": "bundlesize", "check-broken-links": "npm-run-all --parallel --race \"http-server -- _gh_pages/\" blc",