Socket
Socket
Sign inDemoInstall

grunt-contrib-coffee

Package Overview
Dependencies
Maintainers
6
Versions
28
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

grunt-contrib-coffee - npm Package Compare versions

Comparing version 0.11.1 to 0.12.0

9

package.json
{
"name": "grunt-contrib-coffee",
"description": "Compile CoffeeScript files to JavaScript.",
"version": "0.11.1",
"version": "0.12.0",
"homepage": "https://github.com/gruntjs/grunt-contrib-coffee",

@@ -30,5 +30,6 @@ "author": {

"dependencies": {
"coffee-script": "~1.7.0",
"coffee-script": "~1.8.0",
"chalk": "~0.5.0",
"lodash": "~2.4.1"
"lodash": "~2.4.1",
"uri-path": "0.0.2"
},

@@ -38,3 +39,3 @@ "devDependencies": {

"grunt-contrib-nodeunit": "~0.4.1",
"grunt-contrib-clean": "~0.5.0",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-internal": "~0.4.6",

@@ -41,0 +42,0 @@ "grunt": "~0.4.1"

@@ -1,2 +0,2 @@

# grunt-contrib-coffee v0.11.1 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-coffee.png?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-coffee)
# grunt-contrib-coffee v0.12.0 [![Build Status: Linux](https://travis-ci.org/gruntjs/grunt-contrib-coffee.png?branch=master)](https://travis-ci.org/gruntjs/grunt-contrib-coffee) <a href="https://ci.appveyor.com/project/gruntjs/grunt-contrib-coffee"><img src="https://ci.appveyor.com/api/projects/status/ns3waxwcw8ddcr3f/branch/master" alt="Build Status: Windows" height="18" /></a>

@@ -134,2 +134,3 @@ > Compile CoffeeScript files to JavaScript.

* 2014-10-04   v0.12.0   Fixes litcoffee sourcemaps. Updates to CoffeeScript 1.8.0.
* 2014-08-15   v0.11.1   Fixes summary logging.

@@ -165,2 +166,2 @@ * 2014-08-06   v0.11.0   Adds summary containing number of files created. Move file creation logging to grunt.verbose. Updates Chalk to 0.5.

*This file was generated on Fri Aug 15 2014 11:06:42.*
*This file was generated on Sat Oct 04 2014 19:05:52.*

@@ -15,2 +15,3 @@ /*

var _ = require('lodash');
var uriPath = require('uri-path');

@@ -104,3 +105,3 @@ grunt.registerMultiTask('coffee', 'Compile CoffeeScript files into JavaScript', function() {

generatedFile: path.basename(paths.dest),
sourceRoot: mapOptions.sourceRoot,
sourceRoot: uriPath(mapOptions.sourceRoot),
sourceFiles: mapOptions.sourceFiles

@@ -154,3 +155,3 @@ }, options);

// Add sourceMappingURL to file footer
output.js = output.js + '\n//# sourceMappingURL=' + sourceMappingDir + paths.mapFileName + '\n';
output.js = output.js + '\n//# sourceMappingURL=' + uriPath(sourceMappingDir) + paths.mapFileName + '\n';
};

@@ -178,2 +179,5 @@

}
else {
coffeeOptions.literate = isLiterate(path.extname(options.joinExt));
}

@@ -180,0 +184,0 @@ try {

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