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

edp

Package Overview
Dependencies
Maintainers
2
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

edp - npm Package Compare versions

Comparing version 1.0.0 to 1.0.1

12

lib/help.js

@@ -120,7 +120,7 @@ /**

*/
exports.displayCommandDescription = function ( node, level ) {
exports.displayCommandDescription = function ( node, level, isLast ) {
level = level || 0;
var prefixWhiteLetter = ' ';
if ( level > 0 ) {
prefixWhiteLetter += (new Array( level )).join( ' ' ) + ' |- ';
prefixWhiteLetter += (new Array( level )).join( ' ' ) + (isLast ? '└' : '├');
}

@@ -143,6 +143,12 @@ var sprintf = require( 'sprintf' ).sprintf;

var childLevel = level + 1;
var length = 0;
for ( var key in node.children ) {
length++;
}
for ( key in node.children ) {
length--;
exports.displayCommandDescription(
node.children[ key ],
childLevel
childLevel,
length === 0
);

@@ -149,0 +155,0 @@ }

{
"name": "edp",
"description": "Enterprise Develop Platform",
"version": "1.0.0",
"version": "1.0.1",
"contributors": [

@@ -36,3 +36,3 @@ { "name": "errorrik", "email": "errorrik@gmail.com" },

"extensions": {
"edp-core": [ "install", "link", "unlink" ],
"edp-core": [ "install", "outdated" ],
"edp-config": [ "config" ],

@@ -39,0 +39,0 @@ "edp-build": [ "build" ],

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