Use url version spec for autorest.* packages (#7067)

This commit is contained in:
Patrick Hallisey 2023-10-11 13:48:04 -07:00 коммит произвёл GitHub
Родитель 37a24747a8
Коммит 1e1ef7fd00
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 0 добавлений и 7 удалений

Просмотреть файл

@ -53,13 +53,6 @@ function NpmInstallForProject([string]$workingDirectory) {
Copy-Item -Path $emitterPackageLock -Destination "package-lock.json" -Force
}
$useAlphaNpmRegistry = (Get-Content $replacementPackageJson -Raw).Contains("-alpha.")
if($useAlphaNpmRegistry) {
Write-Host "Package.json contains '-alpha.' in the version, Creating .npmrc using public/azure-sdk-for-js-test-autorest feed."
"registry=https://pkgs.dev.azure.com/azure-sdk/public/_packaging/azure-sdk-for-js-test-autorest@local/npm/registry/ `n`nalways-auth=true" | Out-File '.npmrc'
}
if ($usingLockFile) {
Invoke-LoggedCommand "npm ci"
}