This repo is to store my Advent of Code submissions for 2023.
You will need yarn to run this properly. Just use npm i -g yarn
to get setup with it. Then simply go to the project folder and run yarn
to install the dependencies.
To run the whole project, just run yarn start
, which will run all of the days' tasks.
In development mode, only the most recent day found will run. You will need two terminal windows/tabs/panes to run this.
In the first window, start the compilation tasks by running yarn dev:watch
and then in the second run the actual puzzles with yarn dev
. This gives a live-reloading terminal view of the answers.
TIP: I run the first "watch" task in iTerm and then run the main "dev" task in a terminal within VSCode, so I can see the live results as I type.