From ca47a21b707ff6f88aa119554374c48c9a5ef08f Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Sun, 4 Nov 2018 09:59:31 +0200 Subject: [PATCH] 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. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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",