From acbfb9eb4dbf8e270acc630ca38bb7351d5a555d Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Sat, 7 Apr 2018 11:27:16 -0700 Subject: [PATCH] build: fix angular.json that was missing keys due to cli bugs (#23234) https://github.com/angular/angular-cli/issues/10225 https://github.com/angular/angular-cli/issues/10226 PR Close #23234 --- aio/angular.json | 4 ++++ integration/cli-hello-world/angular.json | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/aio/angular.json b/aio/angular.json index 78e9bc5ca3..261fb3574f 100644 --- a/aio/angular.json +++ b/aio/angular.json @@ -1,5 +1,9 @@ { + "$schema": "./node_modules/@angular-devkit/core/src/workspace/workspace-schema.json", "version": 1, + "cli": { + "packageManager": "yarn" + }, "newProjectRoot": "projects", "projects": { "site": { diff --git a/integration/cli-hello-world/angular.json b/integration/cli-hello-world/angular.json index 2cdef70da5..bc8ce2b0cc 100644 --- a/integration/cli-hello-world/angular.json +++ b/integration/cli-hello-world/angular.json @@ -1,5 +1,9 @@ { + "$schema": "./node_modules/@angular-devkit/core/src/workspace/workspace-schema.json", "version": 1, + "cli": { + "packageManager": "yarn" + }, "newProjectRoot": "projects", "projects": { "cli-hello-world": {