Skip to content

Instantly share code, notes, and snippets.

View nhhockeyplayer's full-sized avatar

nhhockeyplayer nhhockeyplayer

View GitHub Profile
@nhhockeyplayer
nhhockeyplayer / gist:4a96e273aaee70f95792637bb5dc2802
Last active August 5, 2022 11:46
sh-deploy-all-nrwl-nx-libs-from-root-dist-folder.sh
#!/bin/bash
ROOT_DIR=$(pwd)
cd "$ROOT_DIR/dist/libs"
recurseAndDeploy() {
if [[ -f package.json ]]; # target case, unwind
then
npm publish --registry https://registry.npmjs.org --no-git-tag-version --no-push --yes
return;
else