Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

grunt-angular-templates

Package Overview
Dependencies
Maintainers
1
Versions
46
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-angular-templates - npm Package Compare versions

Comparing version 0.4.1 to 0.4.2

test/expected/undefined_file.js

6

Gruntfile.js

@@ -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 @@ }

2

package.json
{
"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();
},
};
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc