grunt-angular-templates
Advanced tools
Comparing version 0.4.1 to 0.4.2
@@ -187,2 +187,8 @@ /* | ||
dest: 'tmp/empty_file.js' | ||
}, | ||
// undefined file | ||
undefined_file: { | ||
src: 'test/fixtures/undefined.html', | ||
dest: 'tmp/undefined_file.js' | ||
} | ||
@@ -189,0 +195,0 @@ } |
{ | ||
"name": "grunt-angular-templates", | ||
"description": "Grunt build task to concatenate & register your AngularJS templates in the $templateCache", | ||
"version": "0.4.1", | ||
"version": "0.4.2", | ||
"homepage": "https://github.com/ericclemmons/grunt-angular-templates", | ||
@@ -6,0 +6,0 @@ "author": { |
@@ -228,3 +228,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) | ||
cwd: 'src/app', | ||
src: 'src/app/templates/**.html', | ||
src: 'templates/**.html', | ||
dest: 'build/app.templates.js' | ||
@@ -314,2 +314,3 @@ } | ||
- v0.4.2 - Fix for using `grunt-env` to change environments. Thanks to @FredrikAppelros ([#20](https://github.com/ericclemmons/grunt-express-server/pull/20)) | ||
- v0.4.1 – Fix bug with empty files. | ||
@@ -316,0 +317,0 @@ - v0.4.0 – Complete rewrite. |
@@ -148,2 +148,12 @@ 'use strict'; | ||
undefined_file: function(test) { | ||
test.expect(1); | ||
var actual = grunt.file.read('tmp/undefined_file.js'); | ||
var expected = grunt.file.read('test/expected/undefined_file.js'); | ||
test.equal(expected, actual); | ||
test.done(); | ||
}, | ||
}; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
38954
30
804
349