I have a gulpfile.js that runs through perfectly when typing gulp into the commandline.
gulp
All the gulp bash command really does is calling the sp
When you install it locally (npm install --save-dev gulp) you can just run it by calling ./node_modules/.bin/gulp all
npm install --save-dev gulp
./node_modules/.bin/gulp all
Or you can define an npm script, and run it with npm run gulp
npm
npm run gulp
by adding this to package.json
package.json
"scripts": { "gulp": "gulp" }