Skip to content

Commit 9c18221

Browse files
committed
Merged PR 131679: Remove typings install from pipeline restore task
## In this PR: - Remove typings install from pipeline restore task Related work items: #472167
1 parent a721ad0 commit 9c18221

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

.pipelines/restore.ps1

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,8 @@ Write-Host "start: try install latest npm version"
1515
& npm install npm@latest -g
1616
Write-Host "done: try install latest npm version"
1717

18-
Write-Host "start: install typings globaly"
19-
& npm install typings -g
20-
Write-Host "done: install typings globaly"
21-
2218
# Do not update $exitCode because we do not want to fail if install latest npm version fails.
2319

24-
Write-Host "start: typings install"
25-
& typings install
26-
Write-Host "done: typings install"
27-
$exitCode += $LASTEXITCODE;
28-
2920
Write-Host "start: npm install"
3021
& npm install --no-audit --no-save
3122
Write-Host "done: npm install"

0 commit comments

Comments
 (0)