aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorXhmikosR <[email protected]>2019-07-15 16:26:36 +0300
committerGitHub <[email protected]>2019-07-15 16:26:36 +0300
commitbce2b5e7edb532c6919ffe493b6840e1e149c40f (patch)
treed3739b095baf78180b025fda5be050bccf6d0ffc /package.json
parent88e87ca7c918ac35d2e3dfa90924b7f89a4bb15c (diff)
downloadbootstrap-bce2b5e7edb532c6919ffe493b6840e1e149c40f.tar.xz
bootstrap-bce2b5e7edb532c6919ffe493b6840e1e149c40f.zip
Move the linkinator test in `npm t`. (#29003)
Diffstat (limited to 'package.json')
-rw-r--r--package.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/package.json b/package.json
index cb2a216a7..5b6aa6fa3 100644
--- a/package.json
+++ b/package.json
@@ -19,7 +19,6 @@
],
"scripts": {
"start": "npm-run-all --parallel watch docs-serve",
- "linkinator": "linkinator _gh_pages --recurse --silent --skip \"^(?!http://localhost)\"",
"bundlesize": "bundlesize",
"css": "npm-run-all css-compile css-prefix css-minify css-copy",
"css-copy": "cross-env-shell shx mkdir -p site/static/docs/$npm_package_version_short/dist/ && cross-env-shell shx cp -r dist/css/ site/static/docs/$npm_package_version_short/dist/",
@@ -71,7 +70,9 @@
"docs-build": "hugo --cleanDestinationDir",
"docs-compile": "npm run docs-build",
"docs-production": "cross-env HUGO_ENV=production npm run docs-build",
- "docs-lint": "node build/vnu-jar.js",
+ "docs-linkinator": "linkinator _gh_pages --recurse --silent --skip \"^(?!http://localhost)\"",
+ "docs-vnu": "node build/vnu-jar.js",
+ "docs-lint": "npm-run-all --parallel docs-vnu docs-linkinator",
"predocs-serve": "npm-run-all css-copy js-copy",
"docs-serve": "hugo server --port 9001 --disableFastRender",
"docs-serve-only": "http-server _gh_pages -p 9001 -a localhost",