Skip to content

Commit c3d65c6

Browse files
author
tower1229
committedNov 2, 2016
1.2.2
1 parent c7046f0 commit c3d65c6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed
 

‎bin/flow.js

+3
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
11
#!/usr/bin/env node
2+
23
const init = require('./init');
34
const run = require('./run');
45
const build = require('./build').build;
56

67
const program = require('commander');
78
const pkg = require('../package.json');
89

10+
process.title = pkg.name + ' V' + pkg.version;
11+
912
program
1013
.version(pkg.version)
1114
.usage('[command] <option>');

‎index.js

-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
11
#!/usr/bin/env node
22

3-
process.title = 'Front-flow-cli by tower1229';
4-
53
module.exports = require('./bin/flow');

0 commit comments

Comments
 (0)
Please sign in to comment.