> I don't like that I have to install it globally, then install it locally, > then pick out all of the plugins I need. I want a single global install > plus a single script in the repository. > I see your point. But just for the record, you *can* install it locally - with some additional work. Coworkers of mine do it using virtualenv and some bash scripts. Admittedly not the most elegant of solutions.
As for your second point: all you need to do is "npm install -g grunt" (which most developers have done already) followed by "npm install" and "grunt" (plus one additional file in the repo: Gruntfile.js). So worst case scenario, that's three commands, all of which are common and well known amongst Node developers. Personally, I don't see any notable advantage in using a (potentially platform-dependent) set of shell scripts to solve a problem for which better tools do exist. That being said, there may very well be other issues with Grunt that could rule it out as an alternative to Jake :-) -- You received this message because you are subscribed to the Google Groups "ESLint" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/groups/opt_out.
