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

kraken-devtools

Package Overview
Dependencies
Maintainers
3
Versions
13
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kraken-devtools - npm Package Compare versions

Comparing version 1.1.0 to 1.2.0

2

package.json
{
"name": "kraken-devtools",
"version": "1.1.0",
"version": "1.2.0",
"description": "A development mode toolkit for kraken",

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

@@ -73,11 +73,27 @@ /*───────────────────────────────────────────────────────────────────────────*\

mkdirp(path.dirname(destFile), function(err) {
if (err) {
//check if the srcFile exists
fs.exists(srcFile, function (exists) {
var err;
if (!exists) {
err = new Error('File not found:', srcFile);
err.code = 'ENOENT';
callback(err);
return;
} else {
mkdirp(path.dirname(destFile), function(err) {
if (err) {
callback(err);
return;
}
fs.createReadStream(srcFile)
.pipe(fs.createWriteStream(destFile)
.on('finish', function() {
callback(null, config);
})
.on('error', callback));
});
}
fs.createReadStream(srcFile).pipe(fs.createWriteStream(destFile));
callback(null, config);
});
});
};

@@ -84,0 +100,0 @@

@@ -65,1 +65,2 @@ kraken-devtools

Thanks to [iantocristian](http://github.com/iantocristian) we now have [browserify support for kraken-devtools](https://github.com/iantocristian/kraken-devtools-browserify)
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