broken-link-checker: force follow links.
After 3256a2c2, blc honored robots.txt thus it didn't crawl anything. Ignore robots.txt to work around the issue.
Showing
+1 -1
... | ... | @@ -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", | ||
... | ... |
Please register or sign in to comment