Whilst running build commands you may see the following error:

```
No gulpfile found
```

This most likely means you're in the wrong directory and need to cd into the directory where the gulpfile is stored. Add a cd command into your build command before running gulp: 

```
cd /path/to/gulpfile
gulp build
```