Grunt is a task-based command line build tool for JavaScript projects.
4
votes
1answer
113 views
Inline require() working in requirejs but not with optimized almond build
As the title says my inline require calls are working in a non-optimized requirejs run but not working when built with grunt and almondjs.
Uncaught Error: undefined missing views/some/view
The top ...
4
votes
1answer
604 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 ...
3
votes
1answer
120 views
How to make Grunt wait for a task to finish before running another?
Here's my Gruntfile and the output.
As you can see in the output, there are a couple of issues related to asynchronous tasks:
imagemin is called and the next one comes straight ahead. This makes ...
3
votes
1answer
164 views
What's the best workflow for running jasmine tests on production code with grunt?
I've scoured the internet looking for a description of the thing I'm trying to do but to no avail. I would like to get unit tests in place for a web frontent I'm building that run directly on the ...
3
votes
0answers
147 views
Inlining require.js text! using Grunt
I've been experimenting with Grunt and Require JS this afternoon. I'm a big fan of the text module and use it to bring in my templates. In non-Grunt based projects I used the inlineText and ...
3
votes
0answers
1k views
Multiple issues running grunt.cmd on windows
I had to modify grunt.cmd because the path for my system was very wrong:
Originally:
%~dp0\Application Data\npm\node_modules\grunt
Which would print:
\\dacwnas\Profiles\<user>\Application ...
2
votes
0answers
16 views
Handling environment-specific configuration in a javascript app
Context : a single-page backbone application build with yeoman
I would like a way to have some application parameters depend on my current environment (dev vs production).
Right now I am using two ...
2
votes
0answers
62 views
Dynamically update Grunt config fields
I have few projects in separate directories and want to build them in the same way.
I want to define project name from task (as param). Grunt tasks will use this project path as root path. But I have ...
2
votes
0answers
117 views
Grunt helper prompt is not working
I'm writing a new plugin for grunt that are using some questions to solve some issues with translation. I wrote the plugin using grunt.registerMultiTask(); And I call that tasks using grunt ...
2
votes
0answers
356 views
grunt.js grunt-init issue
I recently moved to grunt-cli and ditched global grunt v0.3.x. I'm trying to install grunt-init globally and ran into an issue where it wasn't being added to the PATH because of the missing bin file ...
1
vote
0answers
57 views
Proxy configuration for PhantomJS through grunt (qunit)
I'm attempting to run integration tests via grunt-contrib-qunit. I've set the --proxy flag via the options object, every ajax request returns a 404 (not found) error.
Gruntfile.js
...
1
vote
0answers
26 views
Specify QUnit module when run with Grunt
I'm using Grunt, PhantomJS, and the "watch" plugin to run my QUnit tests while I develop (separate from CI). I'd like to be able to focus on a specific QUnit module while I'm working on the code that ...
1
vote
0answers
88 views
Access an AngularJS app running on a Grunt-Proxy server inside a VM from the host
In our development environment we have Ubuntu VMs running on a Windows 7 host. We found that if we change the Gruntfile's "connect.options.hostname" to '0.0.0.0' we can hit our Angular app running in ...
1
vote
0answers
136 views
Gruntjs: why compiled scss to empty file? using grunt-contrib-sass plugin
I am trying to compile scss file using the grunt-contrib-sass plugin (with grunt v0.4.0). The compiled result is an empty css file. Below are the base.scss, Gruntfile.js and package.json files.
...
1
vote
0answers
64 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 ...
1
vote
0answers
120 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
0answers
321 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
0answers
111 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
0answers
97 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
...
1
vote
0answers
143 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: ...
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 ...
1
vote
0answers
58 views
How to run tests with gruntJS
So, how do I run the test suite in gruntjs? I thought it should be pretty simple and straight-forward but well, for me it wasn't :)
Since gruntjs should be able to run tests I thought that I could ...
1
vote
0answers
241 views
Why does `grunt watch` fail with “ENOENT, no such file or directory” although file exists
When I run grunt watch, watch works once: Grunt compiles/minifies all files, after I've edited and saved a Javascript file. But when I edit and save that same file again, Grunt says ENOENT, no such ...
1
vote
0answers
63 views
gruntjs load external config
Ahoy grunt-masters!
I would like to load external config files into grunt so that I can do something like this:
$ grunt dev:homepage
and it would load in homepage-config.json, then run watch
$ ...
1
vote
0answers
154 views
Grunt, warning when building jQuery
I'm getting the following warning when trying to build jQuery with Grunt:
"Warning: You need to run this command from the toplevel of the working tree. Use --force to continue."
My project is ...
1
vote
0answers
264 views
grunt-bbb problems with jam
I have started recently with bbb and grunt-bbb and currently I have problems with the bbb jam option.
I have created a project with bbb:init, created a test module and right now I want to add ...
1
vote
0answers
88 views
Grunt slow on network
I've created a grunt file on a project I'm working on. We have a template and that is used across a range of products but it's all saved to our network. When I run grunt default on the template it ...
0
votes
0answers
5 views
jshint conflicting with jsbeautifier and complaining about indentation
I have a jsbeautifer followed by a jshint task in my Gruntfile, but they seem to have different ideas about where my closing braces should be.
I agree with what jsbeautifer produces, but jshint ...
0
votes
0answers
27 views
Grunt-contrib-watch error when compiling less files
Not sure why I keep getting these errors when running this watch task.
GRUNT WATCH TASK
# Watch task
watch:
options:
nospawn: true
livereload: true
server_coffee:
files: ...
0
votes
0answers
17 views
Grunt JS copy to network location
I want to use grunt-contrib-copy (or any other grunt copying plugin) to copy files to network location.
Trying below:
copy: {
test: {
files: [
{ src: ...
0
votes
0answers
20 views
Yeoman backbonejs with pushstate causing issues with grunt-contrib-connect
I have a backbonejs application in my yeoman dev environment. My application uses pushstate, however this causes the connect server to issue 404s when the page is reloaded (via live reload) or when I ...
0
votes
0answers
34 views
integrating yeoman with socketstream
I have been developing angular yeoman project and the development process is elegant with yeoman providing necesaary tools for development purposes. At this stage of the project, we are looking to add ...
0
votes
0answers
26 views
Using ExpressJs with Grunt to generate index.html
I am trying to integrate Grunt to my app, that consists of a Rest API in ExpressJS and AngularJS as the frontend.
When doing 'GET /', I'm processing the request with express to check if user is ...
0
votes
0answers
78 views
How to debug grunt in PHPStorm (WebStorm)
Has anobody a good idea about debugging grunt (for example an event listener function) in PHP Storm.
There is Node.js support in storm but I'm not sure how to configure debug settings if I'd like to ...
0
votes
0answers
26 views
Null stderr on child process for growl grunt notifications
Trying to run this answer (http://stackoverflow.com/a/15781666/2199030 ) on a Win7 machine with Node 0.10.4 and 0.8.9, i get null on "child.stderr" and "child.stdout" in this hooker:
...
0
votes
0answers
43 views
group several registered task to one in grunt.js
I currently try to combine several self defined tasks in grunt to one task. But just the first task get executed. My tasks look like the following:
//staging tasks
...
0
votes
0answers
85 views
Running pre deployment Grunt tasks on Heroku
I am fiddling with heroku to deploy my nodejs based application. The problem is I want to run some pre deployment scripts which contain grunt tasks. These tasks basically minify css and js files and ...
0
votes
0answers
30 views
run tests after server restarted after code changed
I have grunt-nodeunit task with watcher and nodemon. So when I do any changes to files grunt-nodeunit and nodemon starts working simultaneously. While grunt-nodeunit executes tests nodemon restarts ...
0
votes
0answers
80 views
grunt bbb release �undefined module�
I try to release my project using backbone-boilerplate and grunt bbb. I didn't change grunt.js file, just add to router next lines (and files in app):
routes: {
"": "index",
"sites": "sites",
...
0
votes
0answers
215 views
Grunt.js Watch Forever
Goal:
I am trying to run a watch task in my Gruntfile.js as a daemon.
Normally, I would execute this script like: grunt watch.
Gruntfile.js:
module.exports = function(grunt) {
...
0
votes
0answers
39 views
How can we map paths with node.js connect
How could we map some path to another path using the node.js connect middleware?
For example, I'd like my server to respond with fileA when requested for fileB.
(it's for using inside ...
0
votes
0answers
71 views
Grunt.js - How to act on modified files in a given folder on call? not automatically with watch
I need to ftp modified files in my bin folder & sub folders recursively to a remote server
but on call, not automatically with watch...
is there a way to trigger a command on modified files only?
...
0
votes
0answers
104 views
Gruntjs watch task compiles all less files instead of only the changed ones
I have configured my watch task to watch after changed .less files.
My configuration:
...
watch : {
lessc : {
files : [ '<%= less.src.src %>' ],
...
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?
0
votes
0answers
198 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 ...
0
votes
0answers
69 views
How to tell if a multitask has finished?
Is it possible to have a callback when a multitask finishes executing? I am developing a grunt task and after my multitask loops through all the data, I want to have a callback that will save my ...
0
votes
0answers
113 views
How to do static code inclusion in Javascript, using Grunt?
I'm using grunt to compose a script that I have broken in two parts: main.js loads an inline worker, worker.js is the actual code for the inline worker.
And this means I have the following code to ...
0
votes
0answers
284 views
Installing grunt globally failed and I can't find it on npmjs.org
I'm getting this error when I run npm install - ideas on why this might be happening?
I've never had a problem installing other libraries globally and I can't find grunt on http://search.npmjs.org/
...
0
votes
0answers
416 views
Node.js 0.8.0 x64 on Windows won't install Grunt
Trying to install Grunt with npm install -g grunt (node.js version 0.8.0) will produce an ETIMEDOUT error. An HTTP proxy is configured in .npmrc using http:\\<servername.com>:<port> ...


