Grunt is a task-based command line build tool for JavaScript projects.
32
votes
3answers
6k 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 ...
21
votes
3answers
4k views
How do you watch multiple files, but only run task on changed file, in Grunt.js?
In learning how to use grunt, I am trying to make a simple coffee-script watcher/compiler. The problem is, if I tell the watch task to watch several files, and one changes, it is going to pass all of ...
18
votes
3answers
2k views
Using node-inspector with Grunt tasks
Does someone used node-inspector with Grunt for application debugging? If not, Can you recommend a debugging tool for Grunt based apps?
I'm working with nodejs for a server side app and I have Grunt ...
17
votes
1answer
413 views
How can I automate both E2E and unit tests with Yeoman & AngularJS?
I'm using Yeoman and generator-angular to manage AngularJS apps, but I'm having trouble with automated testing.
Running grunt test will run unit tests once. I can get E2E tests to run after unit ...
16
votes
2answers
6k views
How to concatenate and minify multiple CSS and JavaScript files with Grunt.js
Note: This question is only relevant for Grunt 0.3.x and has been left for reference. For help with the latest Grunt 0.4.x please see my answer below this question.
I'm currently trying to use ...
12
votes
5answers
445 views
Beautify / lint whitespace in JavaScript
I would like to lint (and perhaps even automatically) beautify whitespace in JavaScript. The question is whether there are any tools that can do this.
I know that JSLint and JSHint, e.g., can check ...
12
votes
1answer
1k views
Full Integration Testing for NodeJS and the Client Side with Yeoman and Mocha
I got awesome client side tests that I run with Yeoman. Yeoman compiles my CoffeeScript, opens up the test page in a server, visit it with PhantomJS and pass all the tests results to the command line. ...
10
votes
1answer
4k views
grunt (minimatch/glob) folder exclusion
I have a situation where I'm trying to use grunt to lint a codebase, excluding specific folders.
grunt uses minimatch (similar to bsdglob) under the hood to match files, but I can't seem to figure ...
9
votes
3answers
588 views
How can I use grunt-regarde with grunt-contrib-coffee to only compile changed .coffee files?
My project has over 300 CoffeeScript files, so it takes several seconds to recompile everything. I'd like to only recompile the changed CoffeeScript files.
Here's the closest I've come so far, but ...
9
votes
1answer
2k views
Grunt livereload with node.js application
I have written an application in Node.js (with Express & socket.io) and I would like to use Grunt to compile my client-side stuff with livereload while developing and being connected to Node.js ...
8
votes
2answers
1k views
npm peerDependency issue with grunt and flatiron peer
While posting this question I figured out the answer, but I'll post both here in case it helps someone else, and perhaps someone can help with the why of what happened.
When I run:
sudo npm install ...
8
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 ...
8
votes
5answers
2k views
how to config grunt.js to minify files separately
there are some js files in static/js/
1. a.js
2. b.js
3. c.js
how to config grunt.js to get below files:
1. a.min.js
2. b.min.js
3. c.min.js
as far, I have to type ...
8
votes
2answers
761 views
node.js script running in VM doesn't see folder changes made from main OS
I have following setup:
Ubuntu Lucid 32 VM created by Vagrant.
Folder from which Vagrant is started with some CSS and JS files. The folder is mounted inside VM at address /vagrant/.
grunt.js with ...
7
votes
2answers
6k views
What's the purpose of gruntjs server task?
I'm learning how to propel use gruntjs. I found the server task but i can't get the point.
Can i use the server task mapping concatenated/minified files to test my application (uses backbone.js) ...
7
votes
3answers
2k views
Why does Grunt not add itself to the shell?
I have a problem installing grunt. All the documentation, and blog post tutorials, say that running:
npm install -g grunt
will then allow you to run grunt commands from the terminal.
I have a ...
7
votes
1answer
959 views
gruntjs - command line arguments
Where can I get a handle for command line arguments?
eg grunt dist --env=UAT. How do I get the value for env?
While I'm at it, how would I assign a default value to this if it's not set on the ...
7
votes
3answers
2k views
Is it possible to compile grunt project from maven?
I'm trying to execute grunt tasks from within maven without needing to install Node.js or anything. This is because I wan't my artifact to be packaged by Jenkins and I can't install Node.js on that ...
7
votes
1answer
1k views
How to use grunt-html installed globally?
I would like to use grunt-html task to check my HTML files.
I install the task locally with npm install grunt-html and use it in grunt.js as follows:
module.exports = function (grunt) {
...
7
votes
2answers
1k views
gruntjs - where to install tasks?
Working on a gruntjs 'Hello World' project, and there doesn't seem to be an optimal place to install a grunt task. Say, for instance, that I want to start compiling coffeescript, I would need the ...
7
votes
1answer
2k views
How to call tasks from code in Grunt if helpers are gone
Grunt is removing the helpers and this already happened in grunt-contrib.
However I have a Grunt file relying on some custom tasks calling some of those helpers.
Without helpers it breaks. I am just ...
6
votes
1answer
2k views
Working project structure that uses grunt.js to combine JavaScript files using RequireJS?
I have some projects that use RequireJS to load individual JavaScript modules in the browser, but I haven't optimized them yet. In both development and production, the app makes a separate request for ...
6
votes
2answers
813 views
How to use grunt-contrib-livereload?
I'm trying to use grunt-contrib-livereload, but can't seem to figure it out. The readme seems to skip over everything that I need explained, and then ends with an example that doesn't work when I try ...
6
votes
2answers
569 views
I'm trying out Grunt and need a simple way to concatenate my modules
This is my first time using Grunt and I'd like to have it combine all my js modules, each of which is wrapped in an immediately executing function, containing a 'use strict' declaration and put them ...
6
votes
2answers
859 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 ...
6
votes
1answer
6k views
Fatal error: Unable to find local grunt [closed]
I removed the old grunt first,and I install the new grunt.But I got an error:
> D:\www\grunt-test>grunt
grunt-cli: The grunt command line interface. (v0.1.4)
Fatal error: Unable to find ...
6
votes
4answers
2k views
grunt server can't be connected <gruntjs>
module.exports = function(grunt) {
// Project configuration.
grunt.initConfig({
server: {
port: 8888,
base: '.'
}
});
};
C:\Program Files\nodejs\test\grunt>
...
6
votes
2answers
864 views
How do I resolve dependencies when linting single javascript files with grunt?
I want to separate my application logic into multiple Javascript files for sanity and developer friendliness, stored in the /src folder. These files should be linted and concatenated into /dist/app.js ...
6
votes
1answer
1k views
Nodemon-like task in Grunt : execute node process and watch
I feel like I'm missing something.
Here is what I want to achieve :
Having a grunt task that executes my server.js and runs watch task in parallel. It feels to me that this is precisely one of the ...
6
votes
2answers
579 views
Using Yeoman/Brunch tools with a hybrid Django/Backbone app?
I'm building a hybrid web application with Django on the back end and Backbone on the front end.
The structure is as follows: I generate all the HTML in Django templates, use request.is_ajax to ...
6
votes
4answers
1k views
Using JSLint/Hint with requirejs
I'm currently setting up a automated build script (with gruntjs) for a require.js driven project . Therefor I would like to run jslint/jshint on all required files before concatenating and minifying ...
5
votes
1answer
237 views
Grunt Concat cannot write to file
Just installed latest Grunt on Ubuntu 12.04. Here is my gruntfile:
module.exports = function(grunt){
//project configuration
grunt.initConfig({
pkg: grunt.file.readJSON('package.json'),
...
5
votes
1answer
785 views
How can I rename files with Grunt, based on the respective file's parent folder name?
I have a the following structure:
src/
modules/
module1/
js/
main.js
scss/
main.scss
index.html
module2/
...
5
votes
1answer
2k views
How to match every file but one in grunt concat?
I'm using grunt to concatenate and minimize my js files, I use the following config for the concat part:
concat: {
dist: {
src: ['<banner:meta.banner>', 'js/*.js'],
dest: ...
5
votes
2answers
4k views
Yeoman: LiveReload vs. Yeoman Watch
I'm trying out Yeoman Server for the first time and see that it offers a native watch tool as a fallback to LiveReload. Here's how the docs explain the fallback:
"[Yeoman Server] automatically fires ...
5
votes
1answer
103 views
Unit testing javascript code style
I'm getting started with javascript unit testing (with Jasmine).
I have experience in unit testing C# code. But given that javascript is a dynamic language, I find it very useful to exploit that, and ...
5
votes
1answer
177 views
Best or simplest way to integrate less in yeoman?
I'm experimenting with yeoman.
I want to integrate less into my yeoman or grunt build. But I haven't found I simple way to do it.
I do have found to yeoman-less repository which refers to ...
5
votes
2answers
2k views
What is workflow in Yeoman to work with Sass files?
I try to use yeoman but I don't know how to use my own sass files with it.
With
grunt server
Sass files are watched and compiled into
.tmp/styles/
But there is no reference to the compiled ...
5
votes
2answers
188 views
How to access mocha options from within a test file?
I am running mocha tests using gruntjs and grunt-simple-mocha:
https://github.com/yaymukund/grunt-simple-mocha
How can I access the options defined in my grunt.js file within each mocha test?
What I ...
5
votes
1answer
142 views
Wrap code in a custom closure during build process
I'd like to wrap my code in a custom type of Closure during build process with Grunt (and uglify). This manipulation must keep the sourceMap working.
My use case is to wrap all my code inside a ...
5
votes
1answer
631 views
sublime text 2 console shows only first line of gruntjs output
When running grunt in sublime text 2 on windows it seems as thought it only shows the first line of output. Strangely enough all tasks are completed. Adding "shell": true or false doesn't seem to have ...
4
votes
1answer
878 views
Alternate grunt.js tasks for dev/prod environments
I am trying to set up my grunt.js file so it only runs the min task when running on my production server - when running on my local dev server I don't want to min my code with every change as it is ...
4
votes
2answers
296 views
How to run grunt 0.4.* without grunt-cli
I wonder if it's possible to run grunt 0.4.* without having installed grunt-cli.
I understand that grunt-cli looks for the version of grunt installed in node-modules in my project directory in order ...
4
votes
3answers
1k 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 ...
4
votes
1answer
457 views
How do I lint two sets of files with different JSHint options? (grunt.js)
I have some JavaScript files that should be linted assuming a Node environment and others that should be linted assuming a browser environment. How do I lint these files with different JSHint options? ...
4
votes
1answer
337 views
How to install grunt and how to built script with it
Hi I'm trying to install Grunt on window7 64 bit. I have installed the Grunt using command
npm install -g grunt
npm install -g grunt-cli
but now if i try to do grunt init it is throwing me an ...
4
votes
2answers
1k views
Using Grunt.js to run mocha tests
I have Grunt.js all set up and I wrote my tests which I want to test using mocha-phantomjs.
I just need help to write a task that will run
$ mocha-phantomjs ./tests/index.html
After some looking ...
1
vote
2answers
161 views
Grunt Build not working with Bower-installed components
I am trying to run
grunt build
from within a directory that was created by
yo angular
I installed angular-ui-bootstrap via bower. Locally I needed to add
<script ...
0
votes
2answers
2k views
“Fatal error: Unable to find local grunt.” when running “grunt” command
I uninstalled grunt with following command.
npm uninstall -g grunt
Then I again installed grunt with following command.
npm install -g grunt-cli
Visit following link:
...
0
votes
0answers
9 views
Error Compass and Grunt
I keep getting that error the whole time:
Warning: You need to have Ruby and Compass installed and in your system PATH for this task to work. More info: ...



