Node package ( Grunt ) installed but not available

I’m trying to build a github jquery-ui library using grunt, but after running npm install I still can’t run the command according to the readme file. It just gives No command ‘grunt’ found: james@ubuntu:~/Documents/projects/ad2/lib/jquery-ui$ grunt build No command ‘grunt’ found, did you mean: Command ‘grun’ from package ‘grun’ (universe) grunt: command not found james@ubuntu:~/Documents/projects/ad2/lib/jquery-ui$ npm … Read more

NoClassDefFoundError – Eclipse and Android

I’m having a problem trying to run an Android app which, up until adding a second external library to its build path, was working fine. Since having added the scoreninja jar, I now get a NoClassDefFoundError when I try to run the app. Here’s the message: 02-11 21:45:26.154: ERROR/AndroidRuntime(3654): java.lang.NoClassDefFoundError: com.scoreninja.adapter.ScoreNinjaAdapter As all of the … Read more

Have Grunt generate index.html for different setups

I’m trying to use Grunt as a build tool for my webapp. I want to have at least two setups: I. Development setup – load scripts from separate files, without concatenation, so my index.html would look something like: <!DOCTYPE html> <html> <head> <script src=”https://stackoverflow.com/questions/12401998/js/module1.js” /> <script src=”js/module2.js” /> <script src=”js/module3.js” /> … </head> <body></body> </html> … Read more

External VS2013 build error “error MSB4019: The imported project was not found”

I am building a project through the command line and not inside Visual Studio 2013. Note, I had upgraded my project from Visual Studio 2012 to 2013. The project builds fine inside the IDE. Also, I completely uninstalled VS2012 first, rebooted, and installed VS2013. The only version of Visual Studio that I have is 2013 … Read more