We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fb7b630 commit 020ecd0Copy full SHA for 020ecd0
build.sh
@@ -69,6 +69,10 @@ function lint() {
69
## deps - updates project dependencies to latest
70
function deps() {
71
npm update --save
72
+ # When we run this on a cloudtop, the urls in package-lock.json are replaced
73
+ # with an internal server. We need to manually update package-lock.json
74
+ # to set them back to https://registry.npmjs.org/
75
+ sed -i '' "s|https://us-npm.pkg.dev/artifact-foundry-prod/ah-3p-staging-npm/|https://registry.npmjs.org/|g" package-lock.json
76
}
77
78
# write_e2e_env - Loads secrets from the gcloud project and writes
0 commit comments