2
votes
2answers
47 views

Monitoring sub-task for grunt-contrib-watch

I have the following Gruntfile.coffee. I am monitoring the watch task as shown below to see file changes and then compile the changed file to coffee-script. # Watch task watch: coffee: files: ...
0
votes
1answer
30 views

Print out Grunt.js config during the build

I'd like to really learn how Grunt is working and be able to debug it later. How do I print out all of the configuration Grunt has at a given time? I'd like to see the merging of .initConfig, the ...
0
votes
1answer
44 views

The simplest Gruntfile.coffee that will prove grunt is working?

Looking for a ground level intro to grunt, so I'd like to know what the simplest Gruntfile would be that would still let me run grunt at the command line and see that the grunt process is working. ...
1
vote
1answer
61 views

Compile to `.js` maintaining the same folder structure

In my app (Asp.net mvc) I have the following folder structure: Scripts folder contains all .js and .coffee files. Inside the folder Controllers I have a folder for each controller. I need that ...
1
vote
1answer
62 views

Different SASS/Coffeescript Variable Values Based on Build

I am trying to create a build system for a front-end framework that will create different paths in SASS (and possibly Coffeescript) based on where I am deploying to. So for example, I might have an ...
4
votes
2answers
100 views

How to avoid multiple helper implementations like __indexOf() with grunt-contrib-coffee

I have a Gruntfile.coffee that has a grunt-contrib-coffee configuration like this: coffee: compile: files: 'public/assets/application.js': [ 'multiple/files' #, ... ] ...
7
votes
3answers
429 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 ...
1
vote
0answers
119 views

Coffeescript and Backbone.js + linting issue with grunt.js

I'm having a bit of an issue with a class extending the Backbone.Model. Using the following class … class Turtles extends Backbone.Model idAttribute: "_id" legs: [0,1,3,5] urlRoot: ...
1
vote
1answer
40 views

How can I add a message to output files with Grunt.js?

I'm using grunt to compile coffeescript to javascript. I'd like to add a short comment to the top of the output js files that state they are generated files that should not be edited, perhaps listing ...
3
votes
1answer
224 views

grunt task with custom json config

i want to create some kind of task where i can read custom configs from different json files, and replace stuff inside my coffee-source files with contents of the json files, and concatenate the ...
2
votes
1answer
795 views

Concatenating and minifying RequireJS with Grunt

I have a project written in CoffeeScript that uses AngularJS. My vendor dependancies are installed using Bower and my file structure is like this: - assets - js - app - model - *.coffee ...
4
votes
2answers
337 views

Running 2 async tasks with grunt

I am working on a small node project and I use coffeescript and less for client-side code. I am trying to set up my development environment using grunt. I've implemented custom grunt task for running ...
1
vote
1answer
607 views

How to manage and concat CoffeeScript files with Grunt/Yeoman?

I am new to Grunt/Yeoman and I have an existing app with 40+ Coffeescript files like this: scripts/ lib/ ... common/ ... util/ ... app/ views/ models/ A.cofffee ...
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. ...
0
votes
1answer
128 views

How can I customize this build script with Node?

I have a unique directory structure that I need help making a build script for. Here is the link (slightly different) or directory structure: client /extensions /sandbox /widgets /form ...
4
votes
1answer
321 views

grunt watch using lots of cpu on Ubuntu 12.04

I'm using grunt to watch my coffeescript files in a towerjs project and recompile them as they change. The configuration for this is generated by towerjs and seems fairly sane. The problem is, that ...
4
votes
1answer
926 views

Using gruntjs, how do watch for changes in .coffee files?

I am new to gruntjs and here is my simple gruntfile: /* global module:false */ module.exports = function(grunt) { // Project configuration. grunt.initConfig({ watch: { tasks: 'coffee' ...
0
votes
1answer
894 views

Compile coffeescript with grunt -> RangeError: Maximum call stack size exceeded

I try to compile my coffeescript file with grunt using the grunt-contrib-coffee plugin. But running grunt coffee, I always get this error: RangeError: Maximum call stack size exceeded This is my ...