Skip to content

Commit 9c64d5c

Browse files
committed
[FIX] turbo command reference
- the option for the turbo command were broken. Because just a bad reference name
1 parent 8b6461a commit 9c64d5c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

bin/cli.js renamed to bin/turbo.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ var program = require('commander'),
33
pkg = require('../package.json'),
44
version = pkg.version;
55

6+
process.stdout.isTTY = true;
7+
require('colors');
8+
69
program
710
.version(version)
811
.command('add', 'from git: `git ta`, utility for execute a git add is a easier way.')

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "turbo-git",
33
"version": "1.1.0",
44
"description": "Making your git even more awesome!",
5-
"main": "bin/cli.js",
5+
"main": "bin/turbo.js",
66
"scripts": {
77
"test": "nyc jasmine-node --verbose --captureExceptions test",
88
"test:watch": "npm test & onchange lib/*.js bin/*.js test/* -- npm test",
@@ -48,7 +48,7 @@
4848
"git-td": "bin/git/git-td.js",
4949
"git-tl": "bin/git/git-tl.js",
5050
"git-ti": "bin/git/git-ti.js",
51-
"turbo": "bin/cli.js"
51+
"turbo": "bin/turbo.js"
5252
},
5353
"devDependencies": {
5454
"console-mock": "^1.0.24",

0 commit comments

Comments
 (0)