Re: [qooxdoo-devel] Grunt issue

2015-01-15 Thread Jonathan Wolfe
Hey Richard, I tried again and it makes one directory (grunt-contrib-clean) - no grunt directory. jwolfe@quince:/var/www/html > /var/www/html/mwp/trunk/libs/qooxdoo-4.1-sdk/tool/bin/create-application.py --name=mobilewx --type=mobile >>> Copy skeleton into the output directory: ./mobilewx >>> Ren

Re: [qooxdoo-devel] Grunt issue

2015-01-15 Thread Richard Sternagel
Hey Jonathan, > I would recommend mentioning that step in the qooxdoo docs > for users not familiar with nodejs. that should have happened automatically when running "create-application.py" - can you try again creating an app? After creation, it should already have a directory called "node_module

Re: [qooxdoo-devel] Grunt issue

2015-01-15 Thread Jonathan Wolfe
Thanks a lot that did it! I would recommend mentioning that step in the qooxdoo docs (http://manual.qooxdoo.org/4.1/pages/tool/grunt.html) for users not familiar with nodejs. ~Jonathan On Thu, Jan 15, 2015 at 3:46 AM, Sanne Peters wrote: > Hi Jonathan, > > You probably did not install nodejs

Re: [qooxdoo-devel] Grunt issue

2015-01-15 Thread Sanne Peters
Hi Jonathan, You probably did not install nodejs (and indirectly grunt too) in your working directory. Just run 'npm install'. this command looks into the package.json file which node modules are needed (grunt will be one of them) and installs them in the root of your project directory. Yo