Setup Yeoman in Windows PowerShell
1. Download Node.js and install it and make sure you have the npm package manager selected before the installation. 2. Open PowerShell and verify the npm installation. 3. Also verify if you have...
View ArticleBuild an AngularJS webapp using Yeoman
We get the Yeoman working last time. Setup Yeoman in Windows PowerShell Now, we can use Yeoman to scaffold a AngularJS project. =) 1. Install the angular webapp generator. npm install -g...
View ArticleGrunt – Setup YUIDoc
1. Install the grunt-contrib-yuidoc as one of your your project dev dependency. npm install grunt-contrib-yuidoc –save-dev 2. To illustrate the example, i created /app/scriptes/human.js as follow....
View ArticleYeoman – Setup AngularJS and Foundation 5 with Sass
The generator-angular written by the Yeoman team comes with Bootstrap integration. But instead of using Bootstrap, i would like to use Foundation 5 with Sass. The following example is created under...
View ArticleAnt – Execute Grunt and fail it on error
I want to execute a Grunt build in an Ant build project. This could be done by using <exec>. <?xml version="1.0" encoding="UTF-8"?> <project name="Ant Called Grunt" default="grunt"...
View Article