@@ -7,13 +7,21 @@ const getOpts = require("get-options");
7
7
const IconCompiler = require ( "../lib/icons/icon-compiler.js" ) ;
8
8
const { options, argv} = getOpts ( process . argv . slice ( 2 ) , {
9
9
"-h, -?, --help" : "" ,
10
+ "-v, --version" : "" ,
11
+ "--verbose" : "" ,
10
12
} ) ;
11
13
12
14
if ( options . help ) {
13
15
printHelp ( ) ;
14
16
process . exit ( 0 ) ;
15
17
}
16
18
19
+ if ( options . version ) {
20
+ const { version} = require ( "../package.json" ) ;
21
+ process . stdout . write ( `v${ version . replace ( / ^ v / i, "" ) } \n` ) ;
22
+ process . exit ( 0 ) ;
23
+ }
24
+
17
25
const unrecognisedOption = argv . find ( a => / ^ - / . test ( a ) ) ;
18
26
if ( unrecognisedOption ) {
19
27
process . stderr . write ( makeSpiffy ( "Unknown option: " ) + unrecognisedOption + "\n" ) ;
@@ -29,15 +37,18 @@ if(!fs.existsSync(path.resolve(__dirname, "..", "node_modules", "coffee-script")
29
37
30
38
31
39
// No arguments passed or input piped through; recompile package config automatically
32
- if ( ! argv [ 0 ] && process . stdin . isTTY )
40
+ if ( ! argv [ 0 ] && process . stdin . isTTY ) {
41
+ debug ( "No arguments passed; using sane defaults" ) ;
33
42
new Promise ( ( resolve , reject ) => {
34
43
const inputPath = path . resolve ( __dirname , ".." , "config.cson" ) ;
44
+ debug ( `Reading input from ${ inputPath } ` ) ;
35
45
fs . readFile ( inputPath , ( error , data ) => error
36
46
? reject ( error )
37
47
: resolve ( data . toString ( ) ) ) ;
38
48
} ) . then ( data => {
39
49
const outputData = IconCompiler . compileConfigData ( data , true ) ;
40
50
const outputPath = path . resolve ( __dirname , ".." , "lib" , "icons" , ".icondb.js" ) ;
51
+ debug ( `Writing output to ${ outputPath } ` ) ;
41
52
return new Promise ( ( resolve , reject ) => {
42
53
fs . writeFile ( outputPath , outputData , error => {
43
54
error ? reject ( error ) : resolve ( ) ;
@@ -47,20 +58,25 @@ if(!argv[0] && process.stdin.isTTY)
47
58
console . error ( error ) ;
48
59
process . exit ( 1 ) ;
49
60
} ) ;
50
-
61
+ }
51
62
else new Promise ( ( resolve , reject ) => {
52
63
if ( ! process . stdin . isTTY ) {
64
+ debug ( "Reading config from standard input" ) ;
53
65
let input = "" ;
54
66
process . stdin . setEncoding ( "UTF8" ) ;
55
67
process . stdin . on ( "readable" , ( ) => {
56
68
const chunk = process . stdin . read ( ) ;
57
69
null !== chunk ? input += chunk : resolve ( input ) ;
58
70
} ) ;
59
71
}
60
- else fs . readFile ( argv [ 0 ] , ( error , data ) => error
61
- ? reject ( error )
62
- : resolve ( data . toString ( ) ) ) ;
72
+ else {
73
+ debug ( `Reading config from ${ argv [ 0 ] } ` ) ;
74
+ fs . readFile ( argv [ 0 ] , ( error , data ) => error
75
+ ? reject ( error )
76
+ : resolve ( data . toString ( ) ) ) ;
77
+ }
63
78
} ) . then ( data => {
79
+ debug ( "Writing result to standard output" ) ;
64
80
const output = IconCompiler . compileConfigData ( data , true ) ;
65
81
process . stdout . write ( output ) ;
66
82
} ) . catch ( error => {
@@ -76,7 +92,7 @@ function printHelp(short = false){
76
92
return ;
77
93
}
78
94
const help = `
79
- Usage: compile [-h|-?|--help] <input>
95
+ Usage: compile [-h|-?|--help] [--verbose] <input>
80
96
81
97
Examples:
82
98
compile
@@ -104,3 +120,8 @@ function makeSpiffy(input){
104
120
. replace ( / < ( [ - \w ] + ) > / g, `<${ italic } $1${ plain } >` )
105
121
. replace ( / ( \s + ) ( \S + \. (?: c s o n | j s ) \b ) / g, `$1${ italic } $2${ plain } ` ) ;
106
122
}
123
+
124
+
125
+ function debug ( ...args ) {
126
+ options . verbose && process . stderr . write ( args . join ( " " ) + "\n" ) ;
127
+ }
0 commit comments