File tree Expand file tree Collapse file tree 1 file changed +11
-3
lines changed
Expand file tree Collapse file tree 1 file changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -119,16 +119,24 @@ stages:
119119 workingDir : ' $(Build.SourcesDirectory)'
120120 customCommand : ' install -g igniteui-cli'
121121
122- - task : Bash@3
123- displayName : ' Run Ignite UI Upgrade in Root and All Project Subdirectories '
122+ - task : PowerShell@2
123+ displayName : ' Update vite.config to licensed '
124124 inputs :
125+ failOnStderr : true
126+ showWarnings : true
127+ workingDirectory : ' $(Build.SourcesDirectory)'
125128 targetType : ' inline'
126129 script : |
127130 #Update vite.config.ts
128131 $viteConfig = Get-Content -Raw ./vite.config.ts
129132 $updatedViteConfig = $viteConfig -replace 'igniteui-webcomponents-', '@infragistics/igniteui-webcomponents-'
130133 $updatedViteConfig | Set-Content ./vite.config.ts
131-
134+
135+ - task : Bash@3
136+ displayName : ' Run Ignite UI Upgrade in Root and All Project Subdirectories'
137+ inputs :
138+ targetType : ' inline'
139+ script : |
132140 echo "Running Ignite UI package upgrade at root level..."
133141 npx ig upgrade-packages --skip-install
134142
You can’t perform that action at this time.
0 commit comments