anvaka / VivaGraphJS

Graph drawing library for JavaScript
Other
3.76k stars 425 forks source link

what is `gulp release`? #218

Open abitofalchemy opened 6 years ago

abitofalchemy commented 6 years ago

on my macOS system I tried to execute the command and got: gulp release zsh: command not found: gulp

What I had to do is:

node_modules/.bin/gulp release

SylvanSign commented 6 years ago

@abitofalchemy run the following instead:

npm run release

Gulp is an npm package that includes an executable CLI tool called with the command gulp. It's used to automate build pipelines and that sort of thing (see https://gulpjs.com/)

See the beginning of http://2ality.com/2016/01/locally-installed-npm-executables.html for more info about the issue you were having.