Skip to content

Commit 810d116

Browse files
committed
New version
1 parent 3ddb036 commit 810d116

3 files changed

Lines changed: 7 additions & 4 deletions

File tree

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "recife-cli",
3-
"version": "0.2.1",
3+
"version": "0.2.2",
44
"description": "CLI for RecifeJs",
55
"license": "MIT",
66
"homepage": "https://recifejs.org/",

src/Log.ts

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ class Log {
1111
fgRed: '\x1b[31m',
1212
bgBlue: '\x1b[44m',
1313
bgRed: '\x1b[41m',
14-
bgYellow: '\x1b[43m'
14+
bgYellow: '\x1b[43m',
15+
bgWhite: '\x1b[47m'
1516
};
1617

1718
private constructor() {
@@ -56,7 +57,9 @@ class Log {
5657

5758
title(text: string) {
5859
process.stdout.write(
59-
`\n${this.colors.bgBlue}${text.toUpperCase()}${this.colors.reset}\n\n`
60+
`\n${this.colors.bgWhite}${
61+
this.colors.fgBlue
62+
}${text.toUpperCase()}${this.colors.reset}\n\n`
6063
);
6164
}
6265

src/stages/CreatePackageJson.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ const createPackageJson = (target: string, name: string) => {
1515
build: 'recife build'
1616
},
1717
dependencies: {
18-
recife: '^0.6.0',
18+
recife: '^0.7.0',
1919
typescript: '^3.*',
2020
'recife-koa': '^0.1.0'
2121
},

0 commit comments

Comments
 (0)