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

cfonts

Package Overview
Dependencies
Maintainers
1
Versions
66
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cfonts - npm Package Compare versions

Comparing version 0.0.7 to 0.0.8

14

bin/font.js

@@ -55,9 +55,9 @@ #!/usr/bin/env node

var cfonts = new CFONTS({
"text": program.text,
"font": program.font,
"colors": program.colors,
"background": program.background,
"letterSpacing": program.letterSpacing,
"space": program.space,
"maxLength": program.maxLength
'text': program.text,
'font': program.font,
'colors': program.colors,
'background': program.background,
'letterSpacing': program.letterSpacing,
'space': program.space,
'maxLength': program.maxLength
});

@@ -64,0 +64,0 @@

@@ -51,4 +51,4 @@ /*

background: $SETTINGS.background || 'Black', //define the background color
letterSpacing: $SETTINGS.letterSpacing || 1, //define letter spacing
space: $SETTINGS.space === undefined ? true : true, //define if the output text should have empty lines on top and on the bottom
letterSpacing: $SETTINGS.letterSpacing === undefined ? 1 : $SETTINGS.letterSpacing, //define letter spacing
space: $SETTINGS.space === undefined ? true : $SETTINGS.space, //define if the output text should have empty lines on top and on the bottom
maxLength: $SETTINGS.maxLength || 10 //define how many character can be on one line

@@ -55,0 +55,0 @@ };

{
"name": "cfonts",
"description": "Sexy fonts for the console",
"version": "0.0.7",
"version": "0.0.8",
"homepage": "https://github.com/dominikwilkowski/cfonts",

@@ -52,3 +52,3 @@ "author": {

},
"license": "MIT"
"license": "GNU-GPL"
}

@@ -44,3 +44,3 @@ ```shell

'background': 'Black', //define the background color
'letterSpacing': '1', //define letter spacing
'letterSpacing': 1, //define letter spacing
'space': true, //define if the output text should have empty lines on top and on the bottom

@@ -261,2 +261,3 @@ 'maxLength': '10' //define how many character can be on one line

## Release History
* 0.0.8 - fixed bugs, docs
* 0.0.7 - changed to settings object

@@ -263,0 +264,0 @@ * 0.0.6 - added `3d` font

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