grunt-angular-templates
Advanced tools
Comparing version 0.4.2 to 0.4.3
{ | ||
"name": "grunt-angular-templates", | ||
"description": "Grunt build task to concatenate & register your AngularJS templates in the $templateCache", | ||
"version": "0.4.2", | ||
"version": "0.4.3", | ||
"homepage": "https://github.com/ericclemmons/grunt-angular-templates", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -313,2 +313,3 @@ # grunt-angular-templates [![Build Status](https://travis-ci.org/ericclemmons/grunt-angular-templates.png?branch=master)](https://travis-ci.org/ericclemmons/grunt-angular-templates) | ||
- v0.4.3 - `options.concat` targets on Windows convert `/` to `\\`. [#48](https://github.com/ericclemmons/grunt-angular-templates/issues/48) | ||
- v0.4.2 - Fix for using `grunt-env` to change environments. Thanks to @FredrikAppelros ([#20](https://github.com/ericclemmons/grunt-express-server/pull/20)) | ||
@@ -315,0 +316,0 @@ - v0.4.1 – Fix bug with empty files. |
@@ -63,2 +63,7 @@ /* | ||
if (options.concat) { | ||
if (process.platform === 'win32') { | ||
options.concat = options.concat.replace(/\//g, '\\'); | ||
} | ||
var config = grunt.config(['concat', options.concat]); | ||
@@ -65,0 +70,0 @@ |
39231
807
350