grunt-angular-templates
Advanced tools
Comparing version 0.5.1 to 0.5.2
{ | ||
"name": "grunt-angular-templates", | ||
"description": "Grunt build task to concatenate & register your AngularJS templates in the $templateCache", | ||
"version": "0.5.1", | ||
"version": "0.5.2", | ||
"homepage": "https://github.com/ericclemmons/grunt-angular-templates", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -42,2 +42,4 @@ # grunt-angular-templates | ||
*Usemin integration requires [grunt-usemin][5] `~2.0.0`* | ||
Install the plugin: | ||
@@ -152,2 +154,5 @@ | ||
- If the value is `true`, the module will look like `angular.module('app')`, meaning `app` module is retrieved. | ||
- If the value is `false`, the module will look like `angular.module('app', [])`, meaning `app` module is created. | ||
### url | ||
@@ -351,2 +356,3 @@ | ||
- v0.5.2 βΒ Fix `usemin` matching issue on Windows ([#80](https://github.com/ericclemmons/grunt-angular-templates/pull/80)) | ||
- v0.5.1 β Add `usemin` option form v0.4.10 | ||
@@ -353,0 +359,0 @@ - v0.5.0 β Works with `grunt-usemin` ([#44](https://github.com/ericclemmons/grunt-angular-templates/issues/44)) |
@@ -11,2 +11,4 @@ /* | ||
var Path = require('path'); | ||
/** | ||
@@ -85,3 +87,3 @@ * Utility for modifying other grunt tasks | ||
.filter(function(files) { | ||
return path === files.dest.substr(-path.length); | ||
return Path.normalize(path) === files.dest.substr(-path.length); | ||
}) | ||
@@ -88,0 +90,0 @@ ; |
50613
1026
405