Last active
March 10, 2017 14:26
-
-
Save jameskraus/b26d623f84fd7ae68dd915e0baaa6dd8 to your computer and use it in GitHub Desktop.
Revisions
-
jameskraus revised this gist
Mar 10, 2017 . 1 changed file with 2 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,5 +3,5 @@ sed -E 's/[ \t]+//' | sed -E 's/"[^\/]+": ".*",?//' | sed '/.*\\.*/d' | sed -E '/^\s*$/d' | sed -E 's/: ".*",?//' | sed -E 's/"//g' | awk '{ print "composer update " $1 " && yarn test || exit 255""\0" }' | xargs -n 1 -0 bash -c -
jameskraus created this gist
Mar 10, 2017 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,7 @@ grep '".*": ".*"' composer.json | sed -E 's/[ \t]+//' | sed -E 's/"[^\/]+": ".*",?//' | sed '/.*\\.*/d' | sed -E '/^\s*$/d' | sed -E 's/: ".*",?//' | sed -E 's/"//g' | awk '{ print "composer update " $1 " && yarn test""\0" }' | xargs -0 bash -c