Skip to content

Commit

Permalink
Add spiffy ascii art to tsdx create (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
jaredpalmer authored May 31, 2019
1 parent 47fb723 commit c7f58a1
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,17 @@ prog
.command('create <pkg>')
.describe('Create a new package with TSDX')
.action(async (pkg: string) => {
console.log(
chalk.blue(`
::::::::::: :::::::: ::::::::: ::: :::
:+: :+: :+: :+: :+: :+: :+:
+:+ +:+ +:+ +:+ +:+ +:+
+#+ +#++:++#++ +#+ +:+ +#++:+
+#+ +#+ +#+ +#+ +#+ +#+
#+# #+# #+# #+# #+# #+# #+#
### ######## ######### ### ###
`)
);
const bootSpinner = ora(`Creating ${chalk.bold.green(pkg)}...`);
let template;
// Helper fn to prompt the user for a different
Expand Down

0 comments on commit c7f58a1

Please sign in to comment.