3
votes
2answers
411 views

Javascript web app and Java server, build all in Maven or use Grunt for web app?

We are doing a web application with AngularJS and we like the idea of using Bower for Dependency Management and Grunt for building, running tests etc. (Yeoman) The server is done with Java using ...
1
vote
2answers
228 views

Grunt watch plugin does not display UglifyJS abort message

grunt-contrib-watch plugin provides nice auto-build feature but in some occasions does not display warning message from tasks, here is my grunt.js: min: { app: { src: [ ...
7
votes
2answers
1k views

Integrating Jade in Yeoman's server/watch/reload tasks

I've been playing around with Yeoman & Jade. I've created a small test app via yeoman init angular (it's an angular app, but that's not the point here)... When I enter yeoman server at the ...
3
votes
3answers
933 views

How to copy compiled jade files to a destination folder using grunt

For a single page app that I'm working on, I have the following structure: dist css js lib partials index.html src css js lib views partials index.jade Directory dist will be used by the ...
21
votes
3answers
4k views

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 ...
2
votes
2answers
141 views

JS Compiler / Package Manager for use with version control

I'm trying to grasp a bit of an idea here. And hoping someone can help clarify the best practice. How do teams or pairs approach using a build system for javascript like grunt.js ? I really want to ...
3
votes
2answers
1k views

GruntJs 'grunt' cmd opens Visual Studio?

I have been able to use GruntJs on several personal projects with zero problems. I decided I would use it on my project at work. I run: grunt init:gruntfile and that creates the gruntfile and the ...