1
vote
1answer
115 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
1answer
69 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: { ...
15
votes
2answers
5k views

How to concatenate and minify multiple CSS and JavaScript files with Grunt.js

Note: This question is only relevant for Grunt 0.3.x and has been left for reference. For help with the latest Grunt 0.4.x please see my answer below this question. I'm currently trying to use ...
2
votes
1answer
2k views

Using grunt js, how can I dynamically add the <title> to static html files?

More specifically, I want to add the titles by referencing an external JSON file, let's call it titles.json. One of the things I use grunt for is to build static HTML files for design and debugging. ...
4
votes
2answers
496 views

I'm trying out Grunt and need a simple way to concatenate my modules

This is my first time using Grunt and I'd like to have it combine all my js modules, each of which is wrapped in an immediately executing function, containing a 'use strict' declaration and put them ...