From 45d7143e9b499f1ce053f0a77a38a4006a5d9d7d Mon Sep 17 00:00:00 2001 From: Stamen Stoychev Date: Tue, 25 Nov 2025 19:06:49 +0200 Subject: [PATCH 1/6] fix(cd): trying to update npm --- azure-devops/app-cd.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/azure-devops/app-cd.yml b/azure-devops/app-cd.yml index d10bb5380..bc9b37e01 100644 --- a/azure-devops/app-cd.yml +++ b/azure-devops/app-cd.yml @@ -28,6 +28,12 @@ steps: inputs: versionSpec: 22.x + - task: Npm@1 + inputs: + command: custom + customCommand: 'install -g npm@latest' + displayName: 'Upgrade npm to latest version' + - task: PowerShell@2 displayName: 'Replace with licensed angular-extras' inputs: From 4598c89f22880275433e53bc7ec49eb0f801d129 Mon Sep 17 00:00:00 2001 From: Stamen Stoychev Date: Tue, 25 Nov 2025 19:10:48 +0200 Subject: [PATCH 2/6] fix(*): apparently needs legacy --- azure-devops/app-cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-devops/app-cd.yml b/azure-devops/app-cd.yml index bc9b37e01..7677c2084 100644 --- a/azure-devops/app-cd.yml +++ b/azure-devops/app-cd.yml @@ -70,7 +70,7 @@ steps: - task: Npm@1 displayName: npm install inputs: - command: install + command: install --legacy-peer-deps workingDir: $(Build.SourcesDirectory) verbose: false customEndpoint: 'public proget' From 532afe0ceb86a36b3e8829c565ac01102aa86ca7 Mon Sep 17 00:00:00 2001 From: Stamen Stoychev Date: Tue, 25 Nov 2025 19:21:47 +0200 Subject: [PATCH 3/6] fix(*): attempting additional fix --- package.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 1d5bdd25c..a1e54ba59 100644 --- a/package.json +++ b/package.json @@ -74,7 +74,7 @@ "igniteui-angular": "^21.0.0-alpha.6", "igniteui-angular-charts": "^20.2.0", "igniteui-angular-core": "^20.2.0", - "igniteui-angular-extras": "^20.0.0", + "igniteui-angular-extras": "^20.0.2" "igniteui-angular-i18n": "^21.0.0-alpha.6", "igniteui-dockmanager": "^1.17.0", "igniteui-grid-lite": "1.0.0-alpha.9", @@ -108,8 +108,10 @@ }, "igniteui-angular-extras": { "igniteui-angular": "^21.0.0-alpha.6", + "@infragistics/igniteui-angular": "^21.0.0-alpha.6", "@angular/core": "^21.0.0", - "@angular/common": "^21.0.0" + "@angular/common": "^21.0.0", + "@angular/animations": "^21.0.0" } }, "devDependencies": { From f65454de36174e04bc83f1fa201d92c767fb51da Mon Sep 17 00:00:00 2001 From: Stamen Stoychev Date: Tue, 25 Nov 2025 19:26:48 +0200 Subject: [PATCH 4/6] fix(*): ooops forgot legacy --- azure-devops/app-cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-devops/app-cd.yml b/azure-devops/app-cd.yml index 7677c2084..bc9b37e01 100644 --- a/azure-devops/app-cd.yml +++ b/azure-devops/app-cd.yml @@ -70,7 +70,7 @@ steps: - task: Npm@1 displayName: npm install inputs: - command: install --legacy-peer-deps + command: install workingDir: $(Build.SourcesDirectory) verbose: false customEndpoint: 'public proget' From 61b7f989570a76b21e4ddddd15fd1e7c0dc3d716 Mon Sep 17 00:00:00 2001 From: Stamen Stoychev Date: Tue, 25 Nov 2025 19:28:59 +0200 Subject: [PATCH 5/6] fix(*): another oops fix --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index a1e54ba59..4ee41e78f 100644 --- a/package.json +++ b/package.json @@ -74,7 +74,7 @@ "igniteui-angular": "^21.0.0-alpha.6", "igniteui-angular-charts": "^20.2.0", "igniteui-angular-core": "^20.2.0", - "igniteui-angular-extras": "^20.0.2" + "igniteui-angular-extras": "^20.0.2", "igniteui-angular-i18n": "^21.0.0-alpha.6", "igniteui-dockmanager": "^1.17.0", "igniteui-grid-lite": "1.0.0-alpha.9", From 7ae7834fbc12df6bd6095df2adb4927791b993f8 Mon Sep 17 00:00:00 2001 From: Stamen Stoychev Date: Tue, 25 Nov 2025 19:33:57 +0200 Subject: [PATCH 6/6] fix(*): let's not use the latest npm after all --- azure-devops/app-cd.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/azure-devops/app-cd.yml b/azure-devops/app-cd.yml index bc9b37e01..5d47a6aa8 100644 --- a/azure-devops/app-cd.yml +++ b/azure-devops/app-cd.yml @@ -28,11 +28,11 @@ steps: inputs: versionSpec: 22.x - - task: Npm@1 - inputs: - command: custom - customCommand: 'install -g npm@latest' - displayName: 'Upgrade npm to latest version' +# - task: Npm@1 +# inputs: +# command: custom +# customCommand: 'install -g npm@latest' +# displayName: 'Upgrade npm to latest version' - task: PowerShell@2 displayName: 'Replace with licensed angular-extras'