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

boom-deploy

Package Overview
Dependencies
Maintainers
1
Versions
192
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

boom-deploy - npm Package Compare versions

Comparing version 0.0.24 to 0.0.25

1

boom/debug.js

@@ -56,2 +56,3 @@

//sudoSetPassword();
sudo('echo {{env}}');
sudo('service memcached restart');

@@ -58,0 +59,0 @@ })

4

helpers/defaults.js

@@ -30,6 +30,2 @@

new Helper(function symlinkTo(from, to){
ssh('[ -e ' + to + ' ] && ln -s ' + to + ' ' + from);
});
new Helper(function deployRollback(){

@@ -36,0 +32,0 @@ getReleases();

@@ -164,2 +164,12 @@ var _ = require('lodash');

}().wait()
},
symlinkTo: function(from, to){
return function(){
var future = new Future;
fiberWrapper(scope.ssh.bind(this, '[ -e ' + to + ' ] && ln -nfs ' + to + ' ' + from), [], function(err, res){
if (err) future.throw(err);
else future.return(res);
})
return future;
}().wait()
}

@@ -166,0 +176,0 @@ }

{
"name": "boom-deploy",
"main": "boom.js",
"version": "0.0.24",
"version": "0.0.25",
"description": "deploy your app",

@@ -6,0 +6,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