Grunt is a task-based command line build tool for JavaScript projects.
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 ...
0
votes
1answer
86 views
Grunt: including a generated file in usemin
This is the relevant part in my index.html:
<!-- build:js scripts/scripts.js -->
<script src="scripts/vendor/jquery.js"></script>
<script ...
0
votes
2answers
111 views
How to instantiate the Ember Application when using precompiled templates with grunt-ember-templates
(This questions is related to this one, but now I have moved to grunt-ember-templates instead of grunt-contrib-handlebars)
I am trying to split my ember.js handlebars templates in several files, in ...
1
vote
1answer
70 views
What is the matching template name for a given data-template-name
I am precompiling my templates using grunt-ember-templates. This tool is putting my templates in the Ember.TEMPLATES array, as expected. I am finetuning the configuration of grunt-ember-templates. For ...
0
votes
0answers
31 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 ...
1
vote
1answer
64 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 ...
3
votes
1answer
194 views
Using grunt handlebars together with ember, to split templates in separate files
I am trying to split my ember.js handlebars templates in several files, in order to make the code base more manageable.
Since we are using yeoman/grunt, I have come across this handlebars plugin. I ...
3
votes
0answers
159 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
77 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 ...
3
votes
2answers
346 views
How to get grunt.js to start an express app for testing
My current situation is that I use grunt to make a production version of my express app (minimize and merge all the js/css, copy all the files in place) and then I have to run a script which sets an ...
0
votes
1answer
71 views
Where are JSHint errors logged?
I just started messing around with Grunt. I have a basic implementation running successfully, minifying my code and running JSHint.
It says 0 files lint free, which I've gathered means that all of ...
1
vote
1answer
65 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 ...
1
vote
1answer
128 views
Grunt task output then calling grunt-notify
Grunt notify: https://github.com/dylang/grunt-notify is great. However, it seems a bit limited. As far as I can tell all my messages need to be pre-generated. So the first question is how can I ...
3
votes
1answer
75 views
Using output of one task as an input for another
I have an html file that contains references to js files. I want to parse it extract a list of referenced js files and feed contrib-concat or any other task with them.
Is there any convenient way to ...
0
votes
1answer
76 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
87 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 ...
2
votes
1answer
246 views
Grunt usemin with templates
Given the following directory structure:
– Gruntfile.js
– app
|– index.php
|– js
|– css
|– templates
|– template.php
– dist
How can I configure grunt usemin to update the ...
3
votes
1answer
129 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 ...
1
vote
1answer
44 views
Forcing grunt plugin update
I'm using Grunt with the grunt-contrib-copy plugin. Recently a new version (0.4.1) was committed which has a nice new feature that I'd like to take advantage of. But, when I try to update using npm ...
0
votes
1answer
184 views
How to install grunt and how to built script with it
Hi I'm trying to install Grunt on window7 64 bit. I have installed the Grunt using command
npm install -g grunt
npm install -g grunt-cli
but now if i try to do grunt init it is throwing me an ...
0
votes
1answer
102 views
Grunt concat is not working
I have installed Grunt like so `npm install -g grunt-cli successfully.
I have also installed the grunt-contrib-concat libary succesfully like so: npm install grunt-contrib-concat --save-dev
I have ...
1
vote
1answer
141 views
Integrating karma-runner and cucumberjs
Has anyone used karma-runner/testacular to execute cucumberjs tests? I suspect that I may have to write an adapter like the Jasmine adapter. Any knowledge on integrating a test library with ...
1
vote
1answer
252 views
Grunt, Less, and File Watching
I'm trying to get grunt working to do something. My project looks like this:
/app
/assets
/components
/stylesheets
/less
/file1.less
...
0
votes
0answers
83 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
1answer
71 views
grunt-init not creating any file(s)
I probably missed something here. I'm using Node 0.10.1 on Win7/64bit and installed grunt 0.4.1 with
npm install grunt
npm install -g grunt-cli
npm install -g grunt-init
Then I tried to install a ...
0
votes
1answer
138 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 ...
2
votes
1answer
104 views
Grunt.js output and write contents of folder to file?
Goal:
Dynamically include /static/js/**/*.js and /static/css/**/*.css files too <head>
Method:
I am using client side templating partials, so in this example, I would like to write filepaths ...
0
votes
0answers
235 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) {
...
4
votes
1answer
968 views
What is workflow in Yeoman to work with Sass files?
I try to use yeoman but I don't know how to use my own sass files with it.
With
grunt server
Sass files are watched and compiled into
.tmp/styles/
But there is no reference to the compiled ...
1
vote
1answer
336 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
392 views
NodeJS environment variables in Grunt
I'm shifting my project from simply node server.js into using Grunt.
I used to run my application directly from webstorm, and environment variables would be set up for me.
How can I achieve the same ...
0
votes
1answer
238 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:
...
0
votes
0answers
40 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 ...
1
vote
2answers
584 views
grunt: uglify multiple files
I'm using grunt to uglify my static files (using grunt v0.4.0). I have configured it to uglify one file, but I can't figure out how to get it to do two files - despite reading this question and the ...
4
votes
1answer
118 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
74 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 = ...
1
vote
1answer
64 views
Grunt twice for the same task
I would like to run the jshint task twice in GruntJS, but with different options each time.
How would I go about doing something like that?
Currently, my Gruntfile.js looks like this:
'use strict';
...
0
votes
1answer
109 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 ...
0
votes
2answers
1k views
“Fatal error: Unable to find local grunt.” when running “grunt” command
I uninstalled grunt with following command.
npm uninstall -g grunt
Then I again installed grunt with following command.
npm install -g grunt-cli
Visit following link:
...
0
votes
1answer
59 views
building shortcut for 'grunt test' inside sublime
How would I go about having a shortcut / macro to run 'grunt test' from within sublime/ Preferably with just 1 keystroke. Best would be to see the output in the sublime console. Any plugin for this?
...
0
votes
0answers
73 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?
...
1
vote
1answer
224 views
How do you make grunt.js not crash on warnings by default?
I'm using Grunt to compile CoffeeScript and Stylus with a watch task. I also have my editor (SublimeText) set to save files every time I page away from them (I hate losing work).
Unfortunately, if ...
3
votes
2answers
443 views
Javascript web app and Java server, build all in Maven or use Grunt for web app?
We are doing a web application with AngularJS and we like the idea of using Bower for Dependency Management and Grunt for building, running tests etc. (Yeoman)
The server is done with Java using ...
0
votes
3answers
229 views
Sublime Text 2 build with Grunt v0.4.0
I'm trying to setup Sublime build process to run Grunt (v0.4)
This is my build snippet:
{
"cmd": ["grunt", "--no-color"],
"selector": ["Gruntfile.js"],
"path": "/usr/local/bin",
...
0
votes
1answer
101 views
grunt Unexpected token : error
I followed http://gruntjs.com/getting-started to install grunt on my Ubuntu 11.10. When I ran grunt, I got this error:
/opt/node-v0.10.0-linux-x64/lib/node_modules/grunt-cli/package.json:2
"name": ...
2
votes
2answers
494 views
gruntjs grunt-init grunfile throws error Fatal error: Arguments to path.join must be strings
I am trying to set up a new project with gruntjs 0.4. I've uninstalled 0.3 and installed the grunt-cli and imported grunt-init gruntfile. when I run "grunt-init gruntfile" it runs the same as it did ...
-1
votes
2answers
260 views
Sublime Text 2 gives PATH error when trying to run a Grunt build system
I've created this build system for Sublime Text 2 to run my Grunt project:
{
"cmd": ["grunt"] ,
"selector": ["source.js", "source.less", "source.json"] ,
"working_dir": "${project_path}/MyProject" ...
1
vote
0answers
141 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.
...
0
votes
2answers
239 views
Grunt 0.4 less task : How to not concatenate destination files
I want to generate .css partial files from the corresponding .less files
I use the latest versions available from npm, grunt@0.4.0, grunt-contrib-less@0.5.0
Prior to Grunt version 0.4 I could simply ...

