VivaGraphJS
VivaGraphJS copied to clipboard
what is `gulp release`?
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 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.