echo "Uploading to the github an npm...";
git add .;
echo "added git repo...";
read -p "Commit Name : " commit;
git commit -m "$commit";
git push -u origin main;
echo "Pushed to Github...";
npm publish;
echo "Published to www.npmjs.org";