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

cleverstack-cli

Package Overview
Dependencies
Maintainers
1
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cleverstack-cli - npm Package Compare versions

Comparing version 0.0.31 to 0.0.32

21

lib/project.js

@@ -138,3 +138,3 @@ var Promise = require( 'bluebird' )

process.chdir( _path );
utils.install.run( _deps )
install.run( _deps )
.then( function ( ) {

@@ -407,15 +407,12 @@ process.chdir( cwd );

var proc = spawn( 'grunt', [ 'db' ], { env: env, cwd: projectFolder } )
, _err = '';
exec( 'NODE_ENV=' + env.NODE_ENV + ' grunt db', { env: env, cwd: projectFolder }, function ( err, stderr, stdout ) {
if (!!err) {
return def.reject( err );
}
proc.stderr.on('data', function ( data ) {
_err += data + '';
} );
proc.on( 'close', function ( code ) {
if (code !== 0) {
return def.reject( _err );
if (!!stderr && stderr !== "") {
return def.reject( stderr );
}
def.resolve( true );
def.resolve( );
} );

@@ -455,3 +452,3 @@

if (tasks.indexOf( 'db' ) > -1) {
runDBMigrations( projectFolder );
return runDBMigrations( projectFolder );
}

@@ -458,0 +455,0 @@ return true;

{
"name": "cleverstack-cli",
"version": "0.0.31",
"version": "0.0.32",
"description": "Command line interface for CleverTech's CleverStack",

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

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