Tips and tricks
How to zip folder without some directories from Terminal
zip a directory without .git and node_modules
you can type this in Terminal
cd TARGET_PATH/ zip -r dzs-wootable.zip ./dzs-wootable -x "**/node_modules/*" "*.git*"
zip a directory without .git and node_modules
you can type this in Terminal
cd TARGET_PATH/ zip -r dzs-wootable.zip ./dzs-wootable -x "**/node_modules/*" "*.git*"