Skip to content

Commit dc628a8

Browse files
committed
Add debugging and version switch to compile script
1 parent fd5e2dd commit dc628a8

File tree

1 file changed

+27
-6
lines changed

1 file changed

+27
-6
lines changed

bin/compile

+27-6
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,21 @@ const getOpts = require("get-options");
77
const IconCompiler = require("../lib/icons/icon-compiler.js");
88
const {options, argv} = getOpts(process.argv.slice(2), {
99
"-h, -?, --help": "",
10+
"-v, --version": "",
11+
"--verbose": "",
1012
});
1113

1214
if(options.help){
1315
printHelp();
1416
process.exit(0);
1517
}
1618

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+
1725
const unrecognisedOption = argv.find(a => /^-/.test(a));
1826
if(unrecognisedOption){
1927
process.stderr.write(makeSpiffy("Unknown option: ") + unrecognisedOption + "\n");
@@ -29,15 +37,18 @@ if(!fs.existsSync(path.resolve(__dirname, "..", "node_modules", "coffee-script")
2937

3038

3139
// 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");
3342
new Promise((resolve, reject) => {
3443
const inputPath = path.resolve(__dirname, "..", "config.cson");
44+
debug(`Reading input from ${inputPath}`);
3545
fs.readFile(inputPath, (error, data) => error
3646
? reject(error)
3747
: resolve(data.toString()));
3848
}).then(data => {
3949
const outputData = IconCompiler.compileConfigData(data, true);
4050
const outputPath = path.resolve(__dirname, "..", "lib", "icons", ".icondb.js");
51+
debug(`Writing output to ${outputPath}`);
4152
return new Promise((resolve, reject) => {
4253
fs.writeFile(outputPath, outputData, error => {
4354
error ? reject(error) : resolve();
@@ -47,20 +58,25 @@ if(!argv[0] && process.stdin.isTTY)
4758
console.error(error);
4859
process.exit(1);
4960
});
50-
61+
}
5162
else new Promise((resolve, reject) => {
5263
if(!process.stdin.isTTY){
64+
debug("Reading config from standard input");
5365
let input = "";
5466
process.stdin.setEncoding("UTF8");
5567
process.stdin.on("readable", () => {
5668
const chunk = process.stdin.read();
5769
null !== chunk ? input += chunk : resolve(input);
5870
});
5971
}
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+
}
6378
}).then(data => {
79+
debug("Writing result to standard output");
6480
const output = IconCompiler.compileConfigData(data, true);
6581
process.stdout.write(output);
6682
}).catch(error => {
@@ -76,7 +92,7 @@ function printHelp(short = false){
7692
return;
7793
}
7894
const help = `
79-
Usage: compile [-h|-?|--help] <input>
95+
Usage: compile [-h|-?|--help] [--verbose] <input>
8096
8197
Examples:
8298
compile
@@ -104,3 +120,8 @@ function makeSpiffy(input){
104120
.replace(/<([-\w]+)>/g, `<${italic}$1${plain}>`)
105121
.replace(/(\s+)(\S+\.(?:cson|js)\b)/g, `$1${italic}$2${plain}`);
106122
}
123+
124+
125+
function debug(...args){
126+
options.verbose && process.stderr.write(args.join(" ") + "\n");
127+
}

0 commit comments

Comments
 (0)