From f5b411a26a7ee8d0ea927aa6005ddd6c9ffdfe13 Mon Sep 17 00:00:00 2001 From: Stamen Stoychev Date: Tue, 25 Nov 2025 11:02:15 +0200 Subject: [PATCH] fix(cd): fixing build pipeline to not replace packages wrongly --- azure-pipelines/build-pipeline.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/azure-pipelines/build-pipeline.yml b/azure-pipelines/build-pipeline.yml index 42a941a43b..43da047784 100644 --- a/azure-pipelines/build-pipeline.yml +++ b/azure-pipelines/build-pipeline.yml @@ -99,7 +99,7 @@ stages: targetType: 'inline' script: | Get-ChildItem -Include "*.tsx","*.ts" -Recurse | ` - ForEach { (Get-Content $_.PSPath | ForEach { ($_ -replace '([from|import])\s?[''"](igniteui-[react|dockmanager].*)[''"]', '$1 "@infragistics/$2"') }) | ` + ForEach { (Get-Content $_.PSPath | ForEach { ($_ -replace '(from|import)\s?[''"](igniteui-(react|dockmanager).*)[''"]', '$1 "@infragistics/$2"') }) | ` Set-Content $_.PSPath } - task: PowerShell@2