Skip to content

Commit f5b411a

Browse files
committed
fix(cd): fixing build pipeline to not replace packages wrongly
1 parent c80c7b8 commit f5b411a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

azure-pipelines/build-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ stages:
9999
targetType: 'inline'
100100
script: |
101101
Get-ChildItem -Include "*.tsx","*.ts" -Recurse | `
102-
ForEach { (Get-Content $_.PSPath | ForEach { ($_ -replace '([from|import])\s?[''"](igniteui-[react|dockmanager].*)[''"]', '$1 "@infragistics/$2"') }) | `
102+
ForEach { (Get-Content $_.PSPath | ForEach { ($_ -replace '(from|import)\s?[''"](igniteui-(react|dockmanager).*)[''"]', '$1 "@infragistics/$2"') }) | `
103103
Set-Content $_.PSPath }
104104
105105
- task: PowerShell@2

0 commit comments

Comments
 (0)