Page 2 of 2
Re: Grunt / Gulp: how do I make it work, is there a good res
Posted: Tue Aug 11, 2015 7:47 am
by simonmlewis
So to start over - where do I install Gulp? Does it go into xampp, phpmyadmin, or into each project?
Or does it go into phpmyadmin, and then each project has a gulpfile.js file?
Re: Grunt / Gulp: how do I make it work, is there a good res
Posted: Tue Aug 11, 2015 8:13 am
by Celauran
It gets installed as a Node module, wherever Node is installed. %AppPath%\npm\node_modules, I believe. That's not terribly important. As I have already stated, the gulpfile is your project's configuration, and it is project-specific. For instance, I have node in /usr/local/bin/node, gulp in /usr/local/lib/node_modules/gulp/bin/gulp.js, and gulpfiles in /Users/Me/Sites/[Project Name]/gulpfile.js
Re: Grunt / Gulp: how do I make it work, is there a good res
Posted: Tue Aug 11, 2015 10:38 am
by simonmlewis
Cool. So the actual Gulp install, doesn't go in the project folder. That gets installed just the once, and the gulpfile.js is the one that has a file per project.