forked from cerc-io/stack-orchestrator
Use variable for local package scope
This commit is contained in:
parent
b6f1fd029d
commit
b10b6c19f9
@ -16,10 +16,10 @@ package_publish_version=$2
|
|||||||
# TODO: make this a paramater and allow a list of scopes
|
# TODO: make this a paramater and allow a list of scopes
|
||||||
npm_scope_for_local="@cerc-io"
|
npm_scope_for_local="@cerc-io"
|
||||||
# We need to configure the local registry
|
# We need to configure the local registry
|
||||||
npm config set @cerc-io:registry ${local_npm_registry_url}
|
npm config set ${npm_scope_for_local}:registry ${local_npm_registry_url}
|
||||||
npm config set -- ${local_npm_registry_url}:_authToken ${NPM_AUTH_TOKEN}
|
npm config set -- ${local_npm_registry_url}:_authToken ${NPM_AUTH_TOKEN}
|
||||||
# Find the set of dependencies from the specified scope
|
# Find the set of dependencies from the specified scope
|
||||||
mapfile -t dependencies_from_scope < <(cat package.json | jq -r '.dependencies | with_entries(if (.key|test("^@cerc-io/.*$")) then ( {key: .key, value: .value } ) else empty end ) | keys[]')
|
mapfile -t dependencies_from_scope < <(cat package.json | jq -r '.dependencies | with_entries(if (.key|test("^'${npm_scope_for_local}'/.*$")) then ( {key: .key, value: .value } ) else empty end ) | keys[]')
|
||||||
echo "Fixing up dependencies"
|
echo "Fixing up dependencies"
|
||||||
for package in "${dependencies_from_scope[@]}"
|
for package in "${dependencies_from_scope[@]}"
|
||||||
do
|
do
|
||||||
|
Loading…
Reference in New Issue
Block a user