Grunt is a task-based command line build tool for JavaScript projects.

learn more… | top users | synonyms

0
votes
2answers
75 views

Configuring backbone and grunt+yeoman to use jade

I'm new to the whole yeoman and grunt scene and I want to know how I can use Jade templates for my backbone views. I downloaded the yeoman backbone generator and ran yo backbone:view email. The ...
-5
votes
0answers
44 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
2answers
56 views

Change the local links to production links while grunt build?

Can we change the links in grunt which mostly will be local to production links during grunt build? For e.g. .a-container { background: url(../images/hello.jpg) no-repeat top center; ...
0
votes
0answers
19 views

Removing a file named '…' in Windows 8 [migrated]

Completely by accident, I created a file named ... using Grunt.js for Node in Windows 8. Is it possible to remove this file without having to reformat the partition?
0
votes
0answers
27 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 ...
2
votes
1answer
68 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 ...
0
votes
1answer
74 views

grunt watch ignored jshint options

I had used grunt-contrib-watch for months in my project. But since last week it is corrupt. I used it to watch for file changes and launch jshint or less task. All works fine. But today grunt watch ...
0
votes
1answer
59 views

How to include a static JSON file for compilation with Jade and Grunt

how do I compile Jade templates to static HTML via Grunt where my data is already held in a JSON file? Say I have this Gruntfile.js module.exports = function(grunt) { ...
0
votes
1answer
31 views

In the Grunt.js docs, there is a “this.filessrc” option, is it possible to do “this.filesDest”?

I created a Grunt plugin for generating "manifests" in YAML or JSON format. For instance, the task can create package.json or component.json from given metadata, or by using the metadata from one of ...
0
votes
1answer
28 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 ...
1
vote
0answers
28 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 ...
0
votes
1answer
24 views

Pass params to an grunt task from an alias task

Is there a way to pass an argument from a alias task like this into on of the calling tasks: grunt.registerTask('taskA', ['taskB', 'taskC']) grunt taskA:test so that task taskB and taskC will be ...
1
vote
2answers
60 views

Error Using Grunt neuter with Ember.js RC.3

Using the gruntfile.js from trek's awesome Ember Todos example - https://github.com/trek/ember-todos-with-build-tools-tests-and-other-modern-conveniences - I'm receiving the following error: Uncaught ...
0
votes
0answers
82 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
67 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
50 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" } } ...
1
vote
1answer
49 views

Killing Spawned Processes when Grunt Exits

I am currently trying to perform several steps that require tasks to be spawned into child processes. For example: Watch files Start up my Static Site Generator's Preview Server I can easily use ...
0
votes
1answer
39 views

Using grunt registerTask targets

In my Gruntfile.js I've got: grunt.initConfig({ // ... uglify: { debug: { options: { mangle: false, compress: false, ...
0
votes
1answer
62 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
34 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
59 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
141 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
0answers
29 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: ...
1
vote
0answers
93 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 ...
2
votes
2answers
51 views

Read package.json in Ember application

We have the following structure (shown just some relevant components) for our yeoman (grunt) based Ember.js project: myapp/ ├── app ├── component.json ├── package.json ├── Gruntfile.js ├── README.md ...
1
vote
1answer
51 views

Grunt warning: No source files found

I am trying to use Grunt for the first time. I think that I'm properly following the directions to install and use Grunt with a plugin (grunt-text-replace). (See, for instance, Grunt's page and the ...
1
vote
1answer
51 views

using Grunt with non-global installation

While attempting to build a custom version of jQuery without installing global dependencies, I ran into the following issue: $ node --version v0.10.4 $ npm --version 1.2.18 $ git clone ...
0
votes
1answer
43 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
53 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'], ...
1
vote
1answer
35 views

How do I run MULTIPLE shell commands in a gruntjs task?

I currently use grunt-shell to run shell commands from a grunt task. Is there a better way to run multiple commands in one task other than stringing them together with '&&'? My Gruntfile ...
1
vote
1answer
68 views

Using templates as a grunt file list

I'm trying to use a template for copying some files with Grunt. Currently, I have: /*global module:false*/ module.exports = function(grunt) { var fs = require('fs'); var path = require('path'); ...
0
votes
1answer
37 views

Facebook login and grunt server

I would like to test the facebook login of my web application, Right now my Site URL in my Facebook app is this: http://localhost:8080/#/SignIn I am using grunt (grunt server) to execute my ...
0
votes
2answers
112 views

RequireJs Module in node always returns undefined when using in a grunt task

I've a small config file that I need in frontend and in my grunt task. js/config.js: define(function() { return [ { id: 'demo', displayName: 'Demo' } ]; }); I can load the ...
0
votes
1answer
117 views

Grunt concat and minification of css files

I'm currently using the Yeoman generated Gruntfile and am looking to concat AND minify my CSS. The way I'm doing it for my JavaScript appears to be working fine however when i try and apply the same ...
0
votes
0answers
44 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 ...
1
vote
1answer
46 views

How to resolve path inside grunt plugin task to its own resources?

I have a sample grunt plugin /tasks sample.js config.file Gruntfile.js package.json I want to get the path to the config.file inside the sample.js. At first, I did it like this ...
0
votes
1answer
101 views

PHP breaks grunt build (htmlmin)

Using php code breaks the grunt build script of a yeoman generated project. Specifically the htmlmin task breaks. Is there a way to get this to work? A workaround I recently used was commenting out ...
4
votes
1answer
138 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 ...
2
votes
2answers
225 views

Is there a standard static site generator for Grunt.js?

I'm looking to build a reasonably complex multi-page site using Grunt.js, and I'd like to be able to render my html from a bunch of partials and base templates etc, so as to remain DRY. I'm also ...
1
vote
1answer
232 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
28 views

How to create a file by registerMultiTask (gruntjs)

I want gruntjs to create a file on each build that contains some PHP code to define a version number. the following code fragments are in my grunt.initConfig: 1st some meta meta: { versionfile: ...
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 ...
0
votes
2answers
113 views

grunt-contrib-build' is not in the npm registry

I'm getting below error when I try to install npm install grunt-contrib-build --save-dev on my Windows 7 system using command prompt. C:\css-base>npm install grunt-contrib-build --save-dev npm ...
4
votes
2answers
422 views

run Grunt.js with Jenkins

I've set up a Gruntfile with mocha testing and JSlint. This works fine if i just run grunt form the terminal. I want to run grunt from Jenkins! I set up a new job -> and made built to a shell script ...
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 ...
0
votes
1answer
113 views

Can grunt-regard be configured to run a subset of watch tasks instead of all tasks?

I am using gruntjs to build my js application. My grunt file is setup to run two separate builds where 80% of the code is the same for both and depending on the build we include additional files and ...
1
vote
1answer
164 views

Task “concat” not found in Grunt on windows

My gruntfile : module.exports = function(grunt) { grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), concat: { js: { src: ...
1
vote
1answer
118 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 ...
0
votes
0answers
88 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
2answers
43 views

gruntjs: use files with dynamic mapping in multitask config once for all targets

in my multi task I want to use dynamic mappings for files config property files: [ { expand: true, // Enable dynamic expansion. cwd: 'lib/', // Src matches are relative to ...

1 2 3 4 5 8