Musical keyboard component written in React.
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
|
- for branch in $(cat package.json | jq .publishing | jq -r keys[]) ; do
- git checkout $branch
-
- rawRepository=$(cat package.json | jq -r .publishing.$branch.repository)
- repository=$(cat package.json | jq -r .publishing.$branch.repository)
- currentRepository=$(cat package.json | jq -r .repository)
-
- if [ $repository = $currentRepository ]; then
- echo "$( jq --arg repository "$repository" '.repository = $repository' package.json )" > package.json
- echo "Publishing to primary repository: $repository"
- git push
- elif [ $rawRepository = 'null' ]; then
- echo "$branch has no repository"
- else
- echo "$branch is a mirror"
- echo "$( jq --arg repository "$repository" '.repository = $repository' package.json )" > package.json
- echo "Publishing to mirror repository: $repository"
- git push --mirror $currentRepository
- fi
-
- registry=$(cat package.json | jq -r .publishing.$branch.publishConfig.registry)
- echo $registry
- npm publish --registry=$registry
- done
|