New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

closure-util

Package Overview
Dependencies
Maintainers
2
Versions
65
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

closure-util - npm Package Compare versions

Comparing version 0.13.0 to 0.14.0

10

install.js
var path = require('path');
var fs = require('fs');
var download = require('get-down');
var log = require('npmlog');
var fse = require('fs-extra');
var mkdirp = require('mkdirp');
var rimraf = require('rimraf');

@@ -21,3 +23,3 @@ var util = require('./lib/util');

fse.exists(dir, function(exists) {
fs.exists(dir, function(exists) {
if (exists) {

@@ -28,3 +30,3 @@ log.verbose('install', 'Skipping ' + url);

} else {
fse.mkdirp(dir, function(err) {
mkdirp(dir, function(err) {
if (err) {

@@ -55,3 +57,3 @@ return callback(err);

dl.on('error', function(err) {
fse.remove(dir, function(rimrafErr) {
rimraf(dir, function(rimrafErr) {
if (rimrafErr) {

@@ -58,0 +60,0 @@ log.error('install', rimrafErr);

21

package.json
{
"name": "closure-util",
"version": "0.13.0",
"version": "0.14.0",
"description": "Utilities for Closure Library based projects.",

@@ -25,15 +25,16 @@ "main": "lib/index.js",

"dependencies": {
"acorn": "0.4.2",
"async": "0.2.9",
"gaze": "0.4.3",
"get-down": "0.4.0",
"glob": "3.2.7",
"async": "0.2.9",
"graceful-fs": "3.0.2",
"handlebars": "1.3.0",
"lodash": "2.4.1",
"graceful-fs": "2.0.1",
"handlebars": "1.3.0",
"send": "0.1.4",
"minimatch": "0.2.14",
"mkdirp": "0.5.0",
"npmlog": "0.0.6",
"gaze": "0.4.3",
"acorn": "0.4.2",
"socket.io": "0.9.16",
"fs-extra": "0.8.1",
"get-down": "0.3.0"
"rimraf": "2.2.8",
"send": "0.1.4",
"socket.io": "0.9.16"
},

@@ -40,0 +41,0 @@ "devDependencies": {

Sorry, the diff of this file is not supported yet

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