Grunt is a task-based command line build tool for JavaScript projects.
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' #, ...
]
...
1
vote
1answer
58 views
Why does gruntjs file array format not allow referencing dest files in another task using templates?
I ran into an issue with a new build I am creating with gruntjs. I wanted to use grunt-contrib-copy to copy files into my deployment area and then reuse those destination files in a later task. It ...
1
vote
0answers
63 views
Stalling Jasmine Tests
I'm working on a large, thick client, javascript project that uses jasmine for testing. In the most recent build when I try running jasmine via phantom it just hangs. Either it's going incredibly ...
2
votes
2answers
315 views
Getting grunt.js t work on a pre-existing yeoman project
I have a working yeoman project, which I run the server with grunt server, it works fine.
I put the entire thing into a git repo, and checked it out to a new folder...
when I try doing 'grunt ...
0
votes
3answers
155 views
Jenkins console output has these strange characters from grunt command [31m[[39m…
I'm running a grunt-contrib-jshint command using jenkins and the console output is contains text like:
[31m[[39m[33mL425[39m[31m:[39m[33mC29[39m[31m][39m [33mExpected a conditional ...
0
votes
1answer
51 views
gruntjs: Configure which files to concat from command line
In my project I have JS-files-modules that should be packed in one file.
Folder structure:
| src
| - start.js
| - module1.js
| - module2.js
| - module3.js
| - end.js
I want to configure which ...
2
votes
1answer
167 views
Grunt seems to skip some tasks on first run
Please forgive my grunt noobiness.
I have grunt 0.4 installed correctly and working, and I'm loving it.
I cannot understand however, why my default task always skips some sub-tasks, on the first ...
1
vote
1answer
95 views
How do I invoke other tasks from my custom task *before* my task code runs?
I'm trying to create a custom task in grunt that automatically invokes its "prerequisites". I'm not sure on how to do that. The Grunt.js docs show this example:
grunt.registerTask('foo', 'My "foo" ...
2
votes
1answer
576 views
Compile less files with grunt-contrib-less won't work
I'm using Grunt for building my web project. I installed grunt-contrib-less package und added a task to my grunt.initConfig({..});
less : {
options: {
paths: ['js/base']
...
1
vote
1answer
261 views
Build multi client project with requirejs and grunt
I'm working on a project where the main code based should be used by a bunch of different client. So we have a requirejs project and my initial idea is to have simple bootstrap.js file that will ...
7
votes
3answers
435 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
1answer
85 views
Do EMBER 1.0 RC require grunt version v0.4.0?
I am planning to use EMBER 1.0 RC, Do we require grunt version v0.4.0 ??
2
votes
1answer
161 views
Grunt gives a weird “WARN: ERROR: Unexpected token…” message
I'm setting up grunt minification tasks for the following css file named "test.css":
body{
background-color: #fff;
text-align: left;
}
I get the following message when I run grunt:
WARN: ERROR: ...
-1
votes
1answer
118 views
Access via “computername.local” stopped working [closed]
Somehow I recently lost the ability to access the dev server, which is running locally on my Mac, using http://mycomputername.local:3000
I used to be able to access it from any other devices on the ...
0
votes
1answer
276 views
Grunt spawned process not capturing output
I have spawned a process using Grunt, but nothing that is written to the output stream (such as console.log) is being displayed in the console.
I would like Grunt to display any output from the ...
1
vote
1answer
539 views
Running Node app through Grunt
I am trying to run my Node application as a Grunt task. I need to spawn this as a child process, however, to allow me to run the watch task in parallel.
This works:
grunt.registerTask('start', ...
0
votes
2answers
299 views
Backbone.js and Handlebars - Using grunt-contrib-handlebars
I'm just wondering if anyone has had experience using this plugin in a backbone project.
Instead of having all my script template tags in a single index file, I wanted to house my templates in the ...
1
vote
1answer
373 views
Cannot GET / when using yo angular scaffolding
I'm trying to get the Yeoman 1.0 beta's angular scaffolding working by following these workflow steps:
npm install generator-angular generator-testacular # install generators
yo angular ...
0
votes
1answer
160 views
Globbing patterns for sub-projects in Grunt
I have several sub-projects that I want to run against a single Gruntfile, as they all need the same tasks running against them. For example, I need to compile the Sass using Compass in each ...
0
votes
1answer
78 views
gruntjs tricky config
I'm wondering how I can watch the files here :
module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-watch');
grunt.loadNpmTasks('grunt-contrib-handlebars');
// Project ...
1
vote
1answer
345 views
Yeoman to use google app engine server
I setup Yeoman 1.0 beta to handle my js/css tasks. Everything works fine that, if I run grunt server, it starts up a static server and connects a browser session to port 9000 (livereload). js/css ...
3
votes
1answer
205 views
List grunt.js tasks
I'm trying to work out how to print a list of all available grunt tasks. With rake it would be:
$ rake -T
What's the equivalent for grunt? e.g.
$ grunt -T
concat
jasmine
minify
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: ...
6
votes
2answers
424 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 ...
1
vote
2answers
525 views
grunt Warning Task “watch” not found
Gruntfile.js:
grunt.initConfig({
watch: {
compass: {
files: [
'app/styles/**/*.{scss,sass}'
],
tasks: 'compass reload'
},
.....
grunt.registerTask('dev', 'watch');
when i run ...
1
vote
2answers
225 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: [
...
1
vote
0answers
310 views
Use Grunt to start Express server
I would like to add a task to my Gruntfile in order to start my Express server instead of the default server.
I tried to had a task and require("server.js") but I think this isn't the right way to do ...
1
vote
2answers
126 views
Running node commands as part of a grunt driven QUnit test
I'm using grunt to package my jQuery plugin. As part of the QUnit tests, I need to run a node command before the tests start to get a consistent result (something like process.env.TZ = 'Europe/London' ...
1
vote
0answers
110 views
grunt async task timeout
I've an async task but it timeouts in 5 seconds and grunt moves on to the next task:
grunt.registerTask("something", '', function(target){
var done = this.async();
function checkStatus ()
...
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 ...
0
votes
1answer
158 views
How to set PATH environment variables in Cloude 9 (c9) IDE and/or run npm modules requiring Java
For various reasons (and because of a recent back injury), I needed to get an "ultra-light" laptop. I went with the recently best-selling Samsung Chromebook, and I can actually get quite a lot of real ...
3
votes
1answer
225 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 ...
6
votes
2answers
718 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 ...
0
votes
1answer
40 views
Execute “generate-resources” build phase when Jetty restarts?
I'm using the jetty-maven-plugin to act as a local server for my web app. During the "generate-resources" phase of my build, I execute lessc and grunt to compile my CSS and JavaScript respectively.
...
1
vote
0answers
95 views
Grunt.js dependdency management
Is there a way to specify file dependencies in Grunt? I.e. if I have:
global/page.jade
project/index.jade -- includes global/page.jade
project/about.jade -- includes global/page.jade
...
3
votes
1answer
212 views
Programmatically set options for grunt task?
I have a grunt task that looks at options with grunt.option('foo'). If I'm calling this task from grunt.task.run('my-task'), how can I change those arguments?
I'm looking for something like:
...
0
votes
1answer
62 views
Grunt.js - Tasks Mutual Invocation
I'm trying to find out if there's a (clean) way of manually invoke one task from within another one.
My case is I need to concatenate several scripts into bundles, so something like "concat", but I ...
0
votes
1answer
74 views
Grunt: How can I change file mode bits (chmod)?
I like to generate a shell script inside the grunt build file and set the execution bit.
In my task i do the following:
grunt.registerTask('createScript', 'Creates the script', function() {
var ...
2
votes
1answer
513 views
Setting up Yeoman with Django
Has anyone being able to get Yeoman to work with Django??
I've tried to set it up and even if i change my grunt file to the correct paths its still uses the default.
I've searched only but it doesnt ...
0
votes
0answers
43 views
Comma first validation with no space
I am building a JSHint set for a JavaScript suite that I am writing. My habit with writing objects is as follows:
var obj = {
hello: 'World'
,foo: 'Bar'
,name: 'Dave'
};
I use Grunt and ...
0
votes
0answers
16 views
Does phantomjs close after each unit test?
I'm new to javascript and gruntjs...
Does gruntjs close the phantomjs browser after each unit test?
2
votes
1answer
101 views
Transitive grunt plugin dependencies?
I have a grunt plugin called snorky that depends on the grunt-compass task. When someone types npm install git://path/to/snorky, I want the grunt-compass task to be installed automatically.
...
1
vote
1answer
178 views
concat error using grunt.js
I'm trying out grunt.js for the first time and am having some beginner issues.
I want to concat all the js files in the /foundation/ folder
I'm getting this error:
Running "concat:options" (concat) ...
1
vote
0answers
141 views
grunt grunt-s3 upload error ECONNREFUSED issue
I am using grunt to do a build and one plugin I am using is grunt-s3 to push files (if tests successful) to the cloud.
However, I am getting:
Running "s3" task
>> Error: Upload error: ...
0
votes
0answers
193 views
Loading jQuery into Grunt.js using the grunt-contrib-jasmine plugin
I am trying to load jQuery into my tests using Grunt.js and the grunt-contrib-jasmine plugin. Here is a gist of my Gruntfile.js and I've referenced jQuery in the jasmine.options.vendor array as the ...
2
votes
1answer
812 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
...
1
vote
0answers
62 views
Specifying Whitespace Only option for UglifyJS2
I am trying to use grunt for minifying javascript files in a project using UglifyJS2.
Does UglifyJS2 have any options like WHITESPACE_ONLY ( which exists in Closure Compiler)?
What are the values ...
0
votes
1answer
553 views
Programmatically pass arguments to grunt task?
I have a grunt task that calls other grunt tasks. I want to call a subtask with programmatically determined arguments. Is this possible? I spent some time digging around the lib/grunt.js and ...
4
votes
2answers
341 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 ...
3
votes
1answer
208 views
How to add custom prompt inside custom grunt-init template
Potential n00b question, but google didnt have a nice succinct answer - lets fix that together.
I am starting out with grunt and I am stuck on something fundamental. I discovered grunt-init had been ...
