Skip to content

Commit

Permalink
Added ASCII text
Browse files Browse the repository at this point in the history
  • Loading branch information
nourharidy committed Oct 16, 2018
1 parent 3e20642 commit e6da2ae
Show file tree
Hide file tree
Showing 3 changed files with 283 additions and 8 deletions.
10 changes: 10 additions & 0 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,23 @@ var stubber = require('async-repl/stubber');
var psol = require('psol')
var logger = require('./logger');
const resnap = require('resnap')()
const CFonts = require('cfonts');

if(fs.existsSync("./parasol.js")){
var config = require(process.cwd()+'/parasol.js');
}

var replInstance = null;

var fonts = ['3d', 'block', 'simple', 'simple3d', 'huge'];

CFonts.say('Parasol', {
font: fonts[Math.floor(Math.random()*fonts.length)],
colors:['yellow', 'redBright']
});
console.log(('You are using Parasol ' + require('./package.json').version).cyan);
console.log(('Documentation: https://developer.lamarkaz.com/parasol \n').cyan)

program
.version(require('./package.json').version)
.option('init', 'Initialize a new Parasol project in this folder')
Expand Down
Loading

0 comments on commit e6da2ae

Please sign in to comment.