Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2018-11-04 10:59:31 +0300
committerXhmikosR <xhmikosr@gmail.com>2018-11-04 16:32:59 +0300
commitca47a21b707ff6f88aa119554374c48c9a5ef08f (patch)
tree6ad359fd6b38291cda3c18e1448020d345a053b8 /package.json
parentc46a0c7e88523523fef5335705bb98aeceba9fe4 (diff)
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.
Diffstat (limited to 'package.json')
-rw-r--r--package.json2
1 files changed, 1 insertions, 1 deletions
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",