VivaGraphJS icon indicating copy to clipboard operation
VivaGraphJS copied to clipboard

what is `gulp release`?

Open abitofalchemy opened this issue 7 years ago • 1 comments
trafficstars

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

abitofalchemy avatar Mar 11 '18 14:03 abitofalchemy

@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.

SylvanSign avatar Mar 17 '18 03:03 SylvanSign