From e0e20387188a421ab04aa9c3bf0d63931dbb96d8 Mon Sep 17 00:00:00 2001 From: George Kalpakas Date: Thu, 11 Oct 2018 11:52:57 +0300 Subject: [PATCH] build(docs-infra): pin git ref for cli command docs (#26391) The JSON files from which cli command docs for angular.io are generated is broken on master (e.g. angular/cli-builds@e0ec86757), which cause foc generation (and CI) to fail. Pinning the git ref where we pull cli sources from to a version that is known to be working (until we figure out what the best approach is) PR Close #26391 --- aio/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aio/package.json b/aio/package.json index e43b6109aa..3b41eeb780 100644 --- a/aio/package.json +++ b/aio/package.json @@ -18,7 +18,7 @@ "build-for": "yarn ~~build --configuration", "prebuild-local": "yarn setup-local", "build-local": "yarn ~~build --configuration=stable", - "extract-cli-command-docs": "node tools/transforms/cli-docs-package/extract-cli-commands.js", + "extract-cli-command-docs": "node tools/transforms/cli-docs-package/extract-cli-commands.js 93bb6efee", "lint": "yarn check-env && yarn docs-lint && ng lint && yarn example-lint && yarn tools-lint", "test": "yarn check-env && ng test", "pree2e": "yarn check-env && yarn update-webdriver", @@ -163,4 +163,4 @@ "xregexp": "^4.0.0", "yargs": "^7.0.2" } -} \ No newline at end of file +}