From 387793fe29d54792defd6660b0dade98114fd476 Mon Sep 17 00:00:00 2001 From: Charles Lyding <19598772+clydin@users.noreply.github.com> Date: Tue, 10 Feb 2026 11:38:36 -0500 Subject: [PATCH] build: remove unused Protractor E2E target from legacy-animations Removes the `e2e` architect target from the `legacy-animations` integration test project as it does not have actual E2E tests and was using a placeholder script. --- integration/legacy-animations/angular.json | 56 ++++------------------ 1 file changed, 8 insertions(+), 48 deletions(-) diff --git a/integration/legacy-animations/angular.json b/integration/legacy-animations/angular.json index 61c677ca94d..499aa68d9fd 100644 --- a/integration/legacy-animations/angular.json +++ b/integration/legacy-animations/angular.json @@ -20,18 +20,11 @@ "browser": "" }, "index": "src/index.html", - "polyfills": [ - "zone.js" - ], + "polyfills": ["zone.js"], "tsConfig": "tsconfig.app.json", "aot": true, - "assets": [ - "src/favicon.ico", - "src/assets" - ], - "styles": [ - "src/styles.css" - ], + "assets": ["src/favicon.ico", "src/assets"], + "styles": ["src/styles.css"], "scripts": [], "optimization": false, "progress": false, @@ -86,19 +79,11 @@ "test": { "builder": "@angular-devkit/build-angular:karma", "options": { - "polyfills": [ - "zone.js", - "zone.js/testing" - ], + "polyfills": ["zone.js", "zone.js/testing"], "tsConfig": "tsconfig.spec.json", "karmaConfig": "karma.conf.js", - "assets": [ - "src/favicon.ico", - "src/assets" - ], - "styles": [ - "src/styles.css" - ], + "assets": ["src/favicon.ico", "src/assets"], + "styles": ["src/styles.css"], "scripts": [], "progress": false, "watch": false @@ -107,33 +92,8 @@ "lint": { "builder": "@angular-devkit/build-angular:tslint", "options": { - "tsConfig": [ - "tsconfig.app.json", - "tsconfig.spec.json", - "e2e/tsconfig.json" - ], - "exclude": [ - "**/node_modules/**" - ] - } - }, - "e2e": { - "builder": "@angular-devkit/build-angular:private-protractor", - "options": { - "protractorConfig": "e2e/protractor.conf.js", - "devServerTarget": "animations:serve", - "webdriverUpdate": false - }, - "configurations": { - "production": { - "devServerTarget": "animations:serve:production" - }, - "ci": { - "devServerTarget": "animations:serve:ci" - }, - "ci-production": { - "devServerTarget": "animations:serve:ci-production" - } + "tsConfig": ["tsconfig.app.json", "tsconfig.spec.json", "e2e/tsconfig.json"], + "exclude": ["**/node_modules/**"] } } }