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

google-closure-compiler

Package Overview
Dependencies
Maintainers
4
Versions
1963
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

google-closure-compiler - npm Package Compare versions

Comparing version 20161024.2.0 to 20161024.3.0

contrib/externs/w3c_css.js

5

lib/gulp/index.js

@@ -199,2 +199,7 @@ /*

if (outputFiles[i].sourceMap) {
if (outputFiles[i].sourceMap.sources) {
outputFiles[i].sourceMap.sources = outputFiles[i].sourceMap.sources.map(function(sourcePath) {
return path.isAbsolute(sourcePath[0]) ? sourcePath.substr(1) : sourcePath;
});
}
applySourceMap(outputFiles[i], outputFiles[i].sourceMap);

@@ -201,0 +206,0 @@ }

12

lib/gulp/json-to-vinyl.js

@@ -44,13 +44,3 @@ /*

if (fileList[i].source_map) {
// Undo what concat-to-json.js did to the source map paths
var sourceMap = JSON.parse(fileList[i].source_map);
var sources = sourceMap.sources;
for (var j = 0; j < sources.length; j++) {
var source = sources[j];
if (path.isAbsolute(source)) {
sources[j] = path.relative('/', source);
}
}
file.sourceMap = sourceMap;
file.sourceMap = JSON.parse(fileList[i].source_map);
}

@@ -57,0 +47,0 @@ outputFiles.push(file);

{
"name": "google-closure-compiler",
"version": "20161024.2.0",
"version": "20161024.3.0",
"description": "Check, compile, optimize and compress Javascript with Closure-Compiler",
"repository": {
"type": "git",
"url": "https://github.com/chadkillingsworth/closure-compiler-npm.git"
"url": "https://github.com/google/closure-compiler-npm.git"
},

@@ -9,0 +9,0 @@ "keywords": [

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