Upgrade

In order to upgrade to the latest version of publishing, make sure to run the following.

  1. Navigate to your workspace
    cd {path/to/workspace}
    
  2. Go into your .next folder and upgrade to the latest
    cd .next
    echo "reset workspace..."
    git reset --hard
    echo "pulling latest version..."
    git pull
    echo "checking for new dependencies..."
    npm install
    

Backlinks