Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes AB#1150: Updates @babel/traverse 7.22 -> 7.23 #2850

Merged
merged 1 commit into from
Dec 1, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions .vsts/node-setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ steps:
inputs:
workingFile: $(Agent.TempDirectory)/.npmrc

# Using the 'script' task as-written below doesn't work properly on Windows.
# It seem to be adding an extra quote character somehow. Using a separate
# powershell task for Windows gets around this issue.
- script: |
echo "##vso[task.setvariable variable=NPM_CONFIG_USERCONFIG]$(Agent.TempDirectory)/.npmrc"
displayName: Set NPM configuration environment variable
echo "##vso[task.setvariable variable=npm_config_userconfig]$(Agent.TempDirectory)/.npmrc"
condition: ne( variables['Agent.OS'], 'Windows_NT' )
displayName: Set NPM userconfig (Linux/MacOS)
- powershell: |
Write-Host "##vso[task.setvariable variable=npm_config_userconfig]$env:AGENT_TEMPDIRECTORY\.npmrc"
condition: eq( variables['Agent.OS'], 'Windows_NT' )
displayName: Set NPM userconfig (Windows)
104 changes: 52 additions & 52 deletions desktop/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading