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

truffle-box

Package Overview
Dependencies
Maintainers
2
Versions
44
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

truffle-box - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

8

lib/utils/unbox.js

@@ -55,6 +55,6 @@ var fs = require("fs-extra");

return new Promise(function(accept, reject) {
tmp.dir(function(err, path, cleanupCallback) {
tmp.dir({unsafeCleanup: true}, function(err, dir, cleanupCallback) {
if (err) return reject(err);
accept(path, cleanupCallback);
accept(path.join(dir, "box"), cleanupCallback);
});

@@ -124,2 +124,6 @@ });

return new Promise(function(accept, reject) {
if (postUnpack.length === 0) {
return accept();
}
exec(postUnpack, {cwd: destination}, function(err, stdout, stderr) {

@@ -126,0 +130,0 @@ if (err) return reject(err);

{
"name": "truffle-box",
"version": "1.0.0",
"version": "1.0.1",
"description": "Truffle project boilerplate utility",

@@ -5,0 +5,0 @@ "main": "box.js",

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