From 93cff501e9e86f3432e2e8d41bcd96d0b99c9f3a Mon Sep 17 00:00:00 2001 From: Shuaib Hasan Akib Date: Sun, 23 Nov 2025 10:58:01 +0600 Subject: [PATCH] refactor(common): remove redundant standalone: true as it is default now -removing `standalone: true` from integration - removed whitespace --- .../cli-hello-world-lazy/src/app/lazy/lazy.component.ts | 1 - integration/cli-signal-inputs/src/app/app.component.ts | 1 - integration/cli-signal-inputs/src/app/greet.component.spec.ts | 1 - integration/cli-signal-inputs/src/app/greet.component.ts | 2 +- integration/defer/src/app/app.component.ts | 1 - integration/defer/src/app/defer.component.ts | 1 - integration/legacy-animations-async/src/app/app.component.ts | 1 - .../legacy-animations-async/src/app/open-close.component.ts | 3 +-- integration/legacy-animations/src/app/app.component.ts | 1 - integration/legacy-animations/src/app/open-close.component.ts | 3 +-- .../projects/ngmodule/src/app/defer/defer.component.ts | 2 +- .../projects/standalone/src/app/app.component.ts | 2 +- 12 files changed, 5 insertions(+), 14 deletions(-) diff --git a/integration/cli-hello-world-lazy/src/app/lazy/lazy.component.ts b/integration/cli-hello-world-lazy/src/app/lazy/lazy.component.ts index 8152fb523f3..c6f537ba539 100644 --- a/integration/cli-hello-world-lazy/src/app/lazy/lazy.component.ts +++ b/integration/cli-hello-world-lazy/src/app/lazy/lazy.component.ts @@ -1,7 +1,6 @@ import {Component} from '@angular/core'; @Component({ - standalone: true, selector: 'app-lazy', template: '

lazy works!

', }) diff --git a/integration/cli-signal-inputs/src/app/app.component.ts b/integration/cli-signal-inputs/src/app/app.component.ts index b73c45b8ece..16a8e5c21c7 100644 --- a/integration/cli-signal-inputs/src/app/app.component.ts +++ b/integration/cli-signal-inputs/src/app/app.component.ts @@ -3,7 +3,6 @@ import {ChangeDetectionStrategy, Component, viewChildren} from '@angular/core'; import {GreetComponent} from './greet.component'; @Component({ - standalone: true, selector: 'app-root', template: ` diff --git a/integration/cli-signal-inputs/src/app/greet.component.spec.ts b/integration/cli-signal-inputs/src/app/greet.component.spec.ts index ea476775169..49190e9a84e 100644 --- a/integration/cli-signal-inputs/src/app/greet.component.spec.ts +++ b/integration/cli-signal-inputs/src/app/greet.component.spec.ts @@ -30,7 +30,6 @@ describe('greet component', () => { }); @Component({ - standalone: true, template: ` diff --git a/integration/cli-signal-inputs/src/app/greet.component.ts b/integration/cli-signal-inputs/src/app/greet.component.ts index 90d7990a32a..771b613164a 100644 --- a/integration/cli-signal-inputs/src/app/greet.component.ts +++ b/integration/cli-signal-inputs/src/app/greet.component.ts @@ -9,7 +9,7 @@ import {Subject} from 'rxjs';