Yesterday, I updated LBF from v2.2.4 -> 2.4.0. I then followed a prompt to update the server environment from v1.2 to v1.3.1. Unfortunately, the updates created a breaking change between project files and the database. I can no longer launch the existing dev site in the browser.
I cloned the broken project and renamed it. The project I am running includes a gulp task runner in the active theme. I use a gulp-sass
dependency to watch and compile my SCSS into CSS.
When I run the ‘gulp watch’ task on the Terminal command line of my IDE, it reports:
Working directory changed to: {path-name-of-former-project}
I need to change the working directory to the path of the cloned (new) project. Otherwise, my SCSS does not compile, and the CSS updates do not get built within the cloned project.
How do I find the location of the working directory referenced by the gulp watch
task, and where can I change that reference?