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 characters
#!/bin/bash | |
# Ensure we're working on the latest version of the main branch | |
git switch main | |
git fetch | |
git pull | |
# Create a new branch | |
git switch -c vitest |
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 characters
# AUTOMATIC MIGRATION FROM WEBPACK TO VITE | |
# chmod +x migrate-to-vite.sh to make this file executable | |
# installing codemods | |
# https://docs.python-guide.org/starting/install3/osx/ | |
# https://dev.to/malwarebo/how-to-set-python3-as-a-default-python-version-on-mac-4jjf | |
# https://pip.pypa.io/en/stable/installing/#installing-with-get-pip-py | |
# NO NEED; ALREADY ON MASTER - (manual action) |