From 8ff060bde14168a1551d05704b737065ad42e4cb Mon Sep 17 00:00:00 2001 From: Kristiyan Kostadinov Date: Wed, 12 Feb 2025 09:26:35 +0100 Subject: [PATCH] fix(@schematics/angular): remove animations module from ng new app Previously the animations module was added to the `ng new` app, because `platform-server` was using it. That's no longer the case as of https://github.com/angular/angular/pull/59762 so these changes remove the dependency. --- .../schematics/angular/workspace/files/package.json.template | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/schematics/angular/workspace/files/package.json.template b/packages/schematics/angular/workspace/files/package.json.template index dcf46e890396..51468a39dd08 100644 --- a/packages/schematics/angular/workspace/files/package.json.template +++ b/packages/schematics/angular/workspace/files/package.json.template @@ -10,7 +10,6 @@ }, "private": true, "dependencies": { - "@angular/animations": "<%= latestVersions.Angular %>", "@angular/common": "<%= latestVersions.Angular %>", "@angular/compiler": "<%= latestVersions.Angular %>", "@angular/core": "<%= latestVersions.Angular %>",