Browse Source

PATCH that replaces yarn.lock references if NPM_CONFIG_REGISTRY is set

framework
Drew Short 6 years ago
parent
commit
5348cf7053
  1. 2
      administration_client/create_config_files.sh

2
administration_client/create_config_files.sh

@ -8,4 +8,6 @@ else
echo "registry \"$NPM_CONFIG_REGISTRY\""
echo "registry \"$NPM_CONFIG_REGISTRY\"" >> .npmrc
echo "registry \"$NPM_CONFIG_REGISTRY\"" >> .yarnrc
echo "Replacing static yarn registry references in yarn.lock..."
find . -name yarn.lock -exec sed -i "s#https://registry.yarnpkg.com#`awk '$1 == "registry" { gsub(/"/,""); print $NF}' /root/.yarnrc`#g" {} \;
fi
Loading…
Cancel
Save