Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
dominikwilkowski committed Jul 22, 2019
2 parents 8ea22cf + 8a0b423 commit 219df15
Show file tree
Hide file tree
Showing 4 changed files with 952 additions and 1,092 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -341,6 +341,7 @@ npm run test


## Release History
* 2.4.4 - bumped dependencies
* 2.4.3 - bumped dependencies
* 2.4.2 - bumped dependencies
* 2.4.1 - updated to babel 7, removed runtime from dependencies
Expand Down
17 changes: 9 additions & 8 deletions package.json
@@ -1,7 +1,7 @@
{
"name": "cfonts",
"description": "Sexy fonts for the console",
"version": "2.4.3",
"version": "2.4.4",
"homepage": "https://github.com/dominikwilkowski/cfonts",
"author": {
"name": "Dominik Wilkowski",
Expand Down Expand Up @@ -38,18 +38,19 @@
"build": "npm run build:bin & npm run build:lib",
"build:bin": "mkdir -p bin && babel src/bin.js --out-file bin/index.js",
"build:lib": "mkdir -p lib && babel src/lib.js --out-file lib/index.js",
"watch": "npm run build && onchange 'src/**/*' -- npm run build"
"watch": "npm run build && onchange 'src/**/*' -- npm run build",
"nuke": "rm -rf lib && rm -rf node_modules && rm yarn.lock"
},
"devDependencies": {
"@babel/cli": "^7.4.4",
"@babel/core": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"jest-cli": "^24.7.1",
"onchange": "^5.2.0"
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"jest-cli": "^24.8.0",
"onchange": "^6.0.0"
},
"peerDependencies": {},
"dependencies": {
"ansi-styles": "^3.2.1",
"ansi-styles": "^4.0.0",
"chalk": "^2.4.2",
"change-case": "^3.1.0",
"window-size": "^1.1.1"
Expand Down
2 changes: 1 addition & 1 deletion test/unit/ansisytle.spec.js
Expand Up @@ -10,7 +10,7 @@ const AnsiSytle = CFonts.__test__.AnsiSytle;


test(`AnsiSytle - Has a bunch of keys`, () => {
expect( Object.keys( AnsiSytle ).length ).toEqual( 42 );
expect( Object.keys( AnsiSytle ).length ).toEqual( 45 );
});


Expand Down

0 comments on commit 219df15

Please sign in to comment.