diff --git a/package.json b/package.json index 375843ced..dca9e7560 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,8 @@ "start": "scripts/start", "test:visual:run": "scripts/test/visual/run", "test:visual:update": "scripts/test/visual/update", - "test:visual:session": "scripts/test/visual/session" + "test:visual:session": "scripts/test/visual/session", + "travis": "scripts/travis" }, "dependencies": { "escape-string-regexp": "^1.0.5" diff --git a/scripts/travis b/scripts/travis index ef63c5c9d..34d9c9a6c 100755 --- a/scripts/travis +++ b/scripts/travis @@ -25,7 +25,7 @@ yarn run build [ $? -gt 0 ] && exit 1 # Deploy documentation to GitHub pages -mkdocs gh-deploy +# mkdocs gh-deploy # Terminate if we're not on a release branch echo "$TRAVIS_BRANCH" | grep -qvE "^[0-9.]+$" && exit 0; :;