Skip to content

Running Development

Luke C Hartman edited this page Nov 16, 2021 · 2 revisions

Each time you start development by running gulp, you first need to make sure you are using Node v8.11.1 (until we update the dependencies).

To check which version you are currently using run:

$ node --version

If your output is something other than v8.11.1 (for example it might output v15.3.0), run:

$ nvm use 8.11.1

You should get Now using node v8.11.1 (npm v5.6.0) as your output.

nvm is a Node Version Manager allowing you to switch between versions of node.

Clone this wiki locally