Skip to content

Commit

Permalink
Docs: Add gulp-cli answer to FAQ (gulpjs#2212)
Browse files Browse the repository at this point in the history
  • Loading branch information
mrassili authored Jul 28, 2020
1 parent 9f12c2d commit 208d6df
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/FAQ.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,10 @@ Probably. Ask yourself:

Always use `\n` to prevent diff issues between operating systems.

## I installed gulp as a dependency from package.json file by running `npm install` but I keep getting `command not found` whenever I try running a gulp command, why doesn't it work?

Upon installing gulp as a project dependency, you need to add that to your PATH environment variable so that when you run a command, the system can find it. An easy solution is to install gulp globally, so that its binaries end up in your PATH environment variable. To install gulp globally, use the command `npm install gulp-cli -g`

## Where can I get updates on gulp?

gulp updates can be found on the following twitters:
Expand Down

0 comments on commit 208d6df

Please sign in to comment.