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
3
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 1.1.3 to 1.1.4

lib/updateNotifier.js

8

lib/project.js

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

function( dep, _next ) {
exec( 'npm install ' + dep + ' --prefix ' + projectFolder + ' --silent', { cwd: moduleDir }, function ( err ) {
var proc = exec( 'npm install ' + dep + ' --prefix ' + projectFolder + ( !program.verbose ? ' --silent' : '' ), { cwd: moduleDir }, function( err ) {
if ( !!err ) {

@@ -162,2 +162,8 @@ return _next( err );

});
// Pipe the output of exec if verbose has been specified
if ( program.verbose ) {
proc.stdout.pipe( process.stdout );
proc.stderr.pipe( process.stdout );
}
},

@@ -164,0 +170,0 @@ function ( err ) {

13

package.json
{
"name": "cleverstack-cli",
"description": "Command line interface for CleverStack",
"version": "1.1.3",
"version": "1.1.4",
"main": "./index.js",

@@ -79,3 +79,6 @@ "author": {

"controller",
"grunt"
"grunt",
"mvc",
"model",
"view"
],

@@ -103,3 +106,4 @@ "license": "BSD-2-Clause",

"tab": "~0.1.0",
"tar": "~1.0.2"
"tar": "~1.0.2",
"update-notifier": "^0.3.0"
},

@@ -117,4 +121,5 @@ "devDependencies": {

"engines": {
"node": "~0.10.0"
"node": "~0.10.0",
"npm": "~1.4.14"
}
}

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