Skip to content

Commit

Permalink
added figlet and app title in ascii
Browse files Browse the repository at this point in the history
  • Loading branch information
Pedro Catré committed Sep 18, 2016
1 parent 9506ecd commit c1f18ba
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
8 changes: 7 additions & 1 deletion app.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,13 @@
var ExternalLinksTester = require('./lib/externalLinksTester'),
_ = require('lodash'),
chalk = require('chalk'),
path = require('path');
figlet = require('figlet');

console.log(
chalk.blue(
figlet.textSync('External Link Tester', { horizontalLayout: 'full' })
)
);

var pathToConfigFile = process.argv[2];

Expand Down
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"bluebird": "^3.0.5",
"chalk": "^1.1.1",
"execa": "^0.4.0",
"figlet": "^1.1.2",
"lodash": "^3.10.1",
"mkdirp": "^0.5.1",
"request": "^2.65.0",
Expand Down

0 comments on commit c1f18ba

Please sign in to comment.