0
votes
1answer
37 views

GruntJS, Multiple Tasks and grunt.option

I am starting to use GruntJS for one of my projects. I have easily accomplished to write a simple build script using simple aliases. However my script contains many tasks that are basically the same, ...
0
votes
1answer
25 views

Yeoman Webapp Generator LiveReload Snippet Not Working

I have been trying to adopt the GruntFile.js in the WebApp Generator and mould it to my needs. The issue I am having with the generator is that it does not inject the LiveReload middleware snippet. So ...
2
votes
0answers
30 views

Continue certain tasks in grunt even if one fails

Is there a way to configure a sequence of tasks so that specific subsequent ones (I don't want --force on the whole batch) run even if one fails? For example, consider a case like this Create some ...
0
votes
1answer
30 views

Grunt Live-Reload via Watch

I'm trying to configure grunt to livereload js and less/css files on changes. While grunt does correctly "watch" and execute assigned tasks, it does not livereload the files. Below is my ...
3
votes
2answers
58 views

How can I perform an asynchronous operation before grunt.initConfig()?

Now I have my Gruntfile setup to perform some automatic detection magic like parsing sourcefiles to parse some PHP sources in roder to dynamically figure out filenames and paths I need to know before ...
2
votes
2answers
51 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
25 views

Gruntfile getting error codes from programs serially

I want to create a grunt file that runs 3 grunt tasks serially one after another regardless of whether they fail or pass. If one of the grunts task fails, I want to return the last error code. I ...
2
votes
0answers
58 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 ...
0
votes
1answer
16 views

Error tracebacks with gruntjs

When encountering an error running grunt, I sometimes get messages like this, with no further information as to where the data variable was not defined, etc. Running "render-site:dev" (render-site) ...
-1
votes
1answer
68 views

Grunt.js - uglify / yui compressor - one to one file mapping

I know I can uglify multiple files into one like this: uglify: { dist: { files: { 'Scripts/build.js': ['Scripts/*.js'] } } } But what if a want to uglify ...
-5
votes
0answers
42 views

I can not do the grunt js work on windows 8 [closed]

I saw many tutorials, but always passes the same error: Warning: Task "uglify" not found. Use --force to continue. Aborted due to warnings. What can be?
0
votes
1answer
26 views

Is there a GruntJS task that will build a JS closure from a source code template?

I need a way to organize source code for a third-party javascript widget; it's one big closure with a single variable in the host site's namespace. This widget will be contained in a single js ...
0
votes
0answers
73 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 ...
1
vote
1answer
61 views

Appropriate way to concat JSON files with Grunt

I'm looking for the best way to combine json files maintaining certain structure using Grunt. The files are disposed in folders in a structure like this: App ├── locales │   ├── en │   │   └── ...
1
vote
2answers
47 views

Error using grunt-crx task

I'm using the grunt-crx task in my Gruntfile like so: crx: { packExtension: { src: "../build/unpacked", dest: "../build/dist" } } ...
0
votes
1answer
57 views

Why doesn't grunt-contrib-connect not find the connect task?

I have a very simple grunt setup. The only active plugin is grunt-contrib-connect. Here is my package.json file: { "name": "gruntApp", "version": "0.1.0", "description": "An application for ...
0
votes
1answer
32 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
51 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. ...
0
votes
0answers
127 views

Alternative build tools to Grunt.js [closed]

I am a Web Developer, I do JavaScript. SCENARIO We've written a great JS project, built with Grunt.js, unit tests, functional tests with Jasmine.js, linted, concatenated, minified from the working ...
0
votes
1answer
40 views

Separate frontend application - build and deployment strategies

There is an opinion that when building rich browser applications (JS-heavy) it should be treated as separate application not as a part of the "backend" app. I wonder how is build and deployment ...
0
votes
1answer
49 views

grunt-contrib-concat - How to include concatenated path in separator?

Given this simple setup: concat: { options: { stripBanners: false, separator: '\n/* path to js file */\n' }, dist: { src: ['js/*.js'], ...
4
votes
1answer
132 views

How do I eliminate duplicate requires caused by relative paths?

When optimizing my require.js project using the grunt-contrib-requirejs task, many scripts are required multiple times because of relative paths. Here is a list of dependencies outputted during the ...
1
vote
1answer
207 views

Yeoman generators, grunt: proper usage of grunt-usemin with grunt-rev

I have a problem with grunt-usemin and grunt-rev. At first the simple workflow to set up an issue environment: Create web application using yo webapp generator (the same thing with ...
0
votes
1answer
38 views

Grunt - resolving non-string (eg array) templates

Say I have a variable in my grunt config with an array as a value. A real world example is grunt.regarde.changed from the grunt-regarde plugin, which lists all files that have changed. I want to ...
1
vote
1answer
22 views

Define a parameter depending on the hostname

I my Gruntfile.js I need to do something like this (pseudocode): if (hostname == 'host1') : port=9000 else : port=9001 How can I get hostname? (this would be the host where I am ...
1
vote
1answer
109 views

Combine JSON files with grunt-contrib-concat

I'm looking for the best way to combine json files in a folder. With HTML, CSS and JavaScript this is pretty easy since you don't need a separator or only a single ;. However, with JSON, we need ...
3
votes
0answers
144 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 ...
1
vote
1answer
75 views

Grunt template task

In my index.html file, I would like to include a different javascript source file in production than I use in development. I am using requirejs in development and would like to use the single ...
0
votes
1answer
66 views

grunt-concat separator option?

how to specify a separator in this scenario: I'm concatenating my files with grunt-concat this way: concat: { options: { banner: '<%= banner %>', separator: "" }, dist: { ...
0
votes
1answer
83 views

Grunt task styleguide styledocco

Is there a way to include a .js file in the output generated by https://github.com/indieisaconcept/grunt-styleguide http://jacobrask.github.com/styledocco/ ? I have a grunt task that compiles my CSS ...
3
votes
1answer
116 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 ...
0
votes
1answer
123 views

Cannot share global variable across tasks in grunt

I have a couple grunt tasks and I am trying to share global variables across those tasks and I am running into issues. I have written a some custom tasks which set the proper output path depending on ...
1
vote
1answer
322 views

How does Ember.js reference Grunt.js precompiled Handlebars templates?

I've been exploring Ember.js, along with Grunt.js but I can't understand how Ember.js is able to find and use precompiled Handlebars templates. Right now my Gruntfile.js looks like this: ...
0
votes
1answer
210 views

How grunt watch files in sub folders?

My codes folders and files like this, you never know how many sub folders in it: js/sub1/a.js js/sub2/b.js js/sub3/sub31/c.js js/sub4/sub41/sub411/d.js Here is part of the Gruntfile.js: ...
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 ...
0
votes
1answer
68 views

require a file outside of node_modules with grunt

I am trying to require a node module that is used in my app into my gruntfile.js but whatever I do i get : Cannot find module 'appjs/config In the gruntfile I simply do : var myconfig = ...
0
votes
1answer
102 views

Getting Jasmine to run on the server-side

I'm trying to get started on testing JavaScript on the server-side with Node.JS I'm using grunt, and grunt-jasmine-node, but I can't get it to run my tests. It just logs PS ...
2
votes
2answers
275 views

How can I run a grunt task from within a grunt task?

I'm created a new grunt task and within it I want to use grunt-contrib-concat to concatenate a few files together. I looked through the docs but I don't find anything that hinted at being able to ...
1
vote
1answer
269 views

grunt requirejs 'define is undefined'

I'm trying to optimize RequireJS using GruntJS with the plugin i'm using is grunt-contrib-requirejs. The problem is my code works fine before optimizing it, and then after optimizing it, on the ...
0
votes
2answers
73 views

Disable creation of report.txt while using Google Closure Compiler with Grunt JS

To minify and obfuscate my JS code I'm trying to use Grunt's closure-compiler plugin. I'm perfectly happy with the result, but after running Grunt I get project.min.js.report.txt file in the output ...
1
vote
2answers
687 views

Configure grunt copy task to exclude files/folders

I have installed the grunt task grunt-contrib-copy. I embedd it in my Gruntfile.js and load the task via grunt.loadNpmTasks('grunt-contrib-copy');. Currently I use following configuration to create ...
1
vote
2answers
314 views

Set/Unset a debug flag during grunt/requirejs build

I am beginning with both requirejs and gruntjs. I have a debug flag in the app like: var debugEnabled = true; Is there some way this can be set to false, automatically from within the requirejs ...
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
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 ...
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 ...
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" ...
1
vote
1answer
262 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 ...
1
vote
1answer
347 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 ...
6
votes
2answers
429 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
0answers
313 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 2 3