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

consola

Package Overview
Dependencies
Maintainers
2
Versions
93
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

consola - npm Package Compare versions

Comparing version

to
3.4.2

dist/shared/consola.DwRq1yyg.cjs

1

dist/basic.d.ts

@@ -21,3 +21,4 @@ import { ConsolaInstance, ConsolaOptions } from './core.js';

// @ts-ignore
export = consola;
export { ConsolaInstance, ConsolaOptions, consola, createConsola };

@@ -21,3 +21,4 @@ import { ConsolaInstance, ConsolaOptions } from './core.js';

// @ts-ignore
export = consola;
export { ConsolaInstance, ConsolaOptions, consola, createConsola };

@@ -22,3 +22,4 @@ import { ConsolaInstance, ConsolaOptions } from './core.js';

// @ts-ignore
export = consola;
export { ConsolaInstance, ConsolaOptions, consola, createConsola };

@@ -235,2 +235,53 @@ type BoxBorderStyle = {

export { type BoxBorderStyle, type BoxOpts, type BoxStyle, type ColorFunction, type ColorName, align, box, centerAlign, colorize, colors, getColor, leftAlign, rightAlign, stripAnsi };
type TreeItemObject = {
/**
* Text of the item
*/
text: string;
/**
* Children of the item
*/
children?: TreeItem[];
/**
* Color of the item
*/
color?: ColorName;
};
type TreeItem = string | TreeItemObject;
type TreeOptions = {
/**
* Color of the tree
*/
color?: ColorName;
/**
* Prefix of the tree
*
* @default " "
*/
prefix?: string;
/**
* The max depth of tree
*/
maxDepth?: number;
/**
* Ellipsis of the tree
*
* @default "..."
*/
ellipsis?: string;
};
/**
* Formats a hierarchical list of items into a string representing a tree structure.
* Each item in the tree can be a simple string or an object defining the text of the item,
* optional children, and colour. The tree structure can be customised with options
* Specify the overall colour and the prefix used for indentation and tree lines.
*
* @param {TreeItem[]} items - An array of items to include in the tree. Each item can be
* either a string or an object with `text', `children' and `colour' properties.
* @param {TreeOptions} [options] - Optional settings to customise the appearance of the tree, including
* the colour of the tree text and the prefix for branches. See {@link TreeOptions}.
* @returns {string} The formatted tree as a string, ready for printing to the console or elsewhere.
*/
declare function formatTree(items: TreeItem[], options?: TreeOptions): string;
export { type BoxBorderStyle, type BoxOpts, type BoxStyle, type ColorFunction, type ColorName, type TreeItem, type TreeItemObject, type TreeOptions, align, box, centerAlign, colorize, colors, formatTree, getColor, leftAlign, rightAlign, stripAnsi };

6

package.json
{
"name": "consola",
"version": "3.4.1",
"version": "3.4.2",
"description": "Elegant Console Wrapper",

@@ -116,3 +116,2 @@ "keywords": [

"devDependencies": {
"@clack/core": "^0.4.1",
"@clack/prompts": "^0.10.0",

@@ -126,7 +125,4 @@ "@types/node": "^22.13.10",

"is-unicode-supported": "^2.1.0",
"jiti": "^2.4.2",
"lodash": "^4.17.21",
"prettier": "^3.5.3",
"sentencer": "^0.2.1",
"sisteransi": "^1.0.5",
"std-env": "^3.8.1",

@@ -133,0 +129,0 @@ "string-width": "^7.2.0",

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet