Skip to content

Commit

Permalink
New version
Browse files Browse the repository at this point in the history
  • Loading branch information
andrelmlins committed Jun 28, 2020
1 parent 3ddb036 commit 810d116
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "recife-cli",
"version": "0.2.1",
"version": "0.2.2",
"description": "CLI for RecifeJs",
"license": "MIT",
"homepage": "https://recifejs.org/",
Expand Down
7 changes: 5 additions & 2 deletions src/Log.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ class Log {
fgRed: '\x1b[31m',
bgBlue: '\x1b[44m',
bgRed: '\x1b[41m',
bgYellow: '\x1b[43m'
bgYellow: '\x1b[43m',
bgWhite: '\x1b[47m'
};

private constructor() {
Expand Down Expand Up @@ -56,7 +57,9 @@ class Log {

title(text: string) {
process.stdout.write(
`\n${this.colors.bgBlue}${text.toUpperCase()}${this.colors.reset}\n\n`
`\n${this.colors.bgWhite}${
this.colors.fgBlue
}${text.toUpperCase()}${this.colors.reset}\n\n`
);
}

Expand Down
2 changes: 1 addition & 1 deletion src/stages/CreatePackageJson.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const createPackageJson = (target: string, name: string) => {
build: 'recife build'
},
dependencies: {
recife: '^0.6.0',
recife: '^0.7.0',
typescript: '^3.*',
'recife-koa': '^0.1.0'
},
Expand Down

0 comments on commit 810d116

Please sign in to comment.