Skip to content

Commit 63b2b11

Browse files
committed
test(@angular-devkit/build-angular): use targets instead of architect property
1 parent 97f53b3 commit 63b2b11

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

tests/angular_devkit/build_angular/hello-world-app/angular.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
"newProjectRoot": "./projects",
55
"cli": {},
66
"schematics": {},
7-
"architect": {},
7+
"targets": {},
88
"projects": {
99
"app": {
1010
"root": "src",
1111
"sourceRoot": "src",
1212
"projectType": "application",
1313
"prefix": "app",
1414
"schematics": {},
15-
"architect": {
15+
"targets": {
1616
"build": {
1717
"builder": "../../../../packages/angular_devkit/build_angular:browser",
1818
"options": {
@@ -138,7 +138,7 @@
138138
"app-e2e": {
139139
"root": "e2e",
140140
"projectType": "application",
141-
"architect": {
141+
"targets": {
142142
"e2e": {
143143
"builder": "../../../../packages/angular_devkit/build_angular:protractor",
144144
"options": {

tests/angular_devkit/build_ng_packagr/ng-packaged/angular.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"lib": {
66
"root": "projects/lib",
77
"projectType": "library",
8-
"architect": {
8+
"targets": {
99
"build": {
1010
"builder": "../../../../packages/angular_devkit/build_ng_packagr:build",
1111
"options": {

tests/angular_devkit/build_webpack/angular-app/angular.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"newProjectRoot": "./projects",
55
"cli": {},
66
"schematics": {},
7-
"architect": {},
7+
"targets": {},
88
"projects": {
99
"app": {
1010
"root": "src",
1111
"sourceRoot": "src",
1212
"projectType": "application",
1313
"schematics": {},
14-
"architect": {
14+
"targets": {
1515
"build-webpack": {
1616
"builder": "../../../../packages/angular_devkit/build_webpack:webpack",
1717
"options": {

tests/angular_devkit/build_webpack/basic-app/angular.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
"newProjectRoot": "./projects",
55
"cli": {},
66
"schematics": {},
7-
"architect": {},
7+
"targets": {},
88
"projects": {
99
"app": {
1010
"root": "src",
1111
"sourceRoot": "src",
1212
"projectType": "application",
1313
"schematics": {},
14-
"architect": {
14+
"targets": {
1515
"build": {
1616
"builder": "../../../../packages/angular_devkit/build_webpack:webpack",
1717
"options": {

0 commit comments

Comments
 (0)