From 42e5e647e95b3042b2fe3833564696501025cbf4 Mon Sep 17 00:00:00 2001 From: shaychoo Date: Tue, 29 May 2018 20:55:02 +0300 Subject: [PATCH] update to new angular convention they change the name from .angular-cli.json to angular.json might need more chnges accross your project --- src/core/files.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/files.ts b/src/core/files.ts index 5bfdc0c..d1cb997 100644 --- a/src/core/files.ts +++ b/src/core/files.ts @@ -149,7 +149,7 @@ export class FilesManager { } get cliConfig() { - const filename = join(this.workspaceRoot, '.angular-cli.json'); + const filename = join(this.workspaceRoot, 'angular.json'); return readFile(filename); }