mirror of
https://github.com/IonicaBizau/git-stats.git
synced 2024-12-22 13:22:11 +01:00
Workaround to force 256 colors output
This commit is contained in:
parent
25cf8bc533
commit
6aca8214ac
1 changed files with 3 additions and 0 deletions
|
@ -1,6 +1,8 @@
|
||||||
#!/usr/bin/env node
|
#!/usr/bin/env node
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
|
process.argv.push("--color=256");
|
||||||
|
|
||||||
const Tilda = require("tilda")
|
const Tilda = require("tilda")
|
||||||
, GitStatsLib = require("..")
|
, GitStatsLib = require("..")
|
||||||
, Ul = require("ul")
|
, Ul = require("ul")
|
||||||
|
@ -13,6 +15,7 @@ const Tilda = require("tilda")
|
||||||
, IsThere = require("is-there")
|
, IsThere = require("is-there")
|
||||||
;
|
;
|
||||||
|
|
||||||
|
|
||||||
// Constants
|
// Constants
|
||||||
const GitStats = new GitStatsLib()
|
const GitStats = new GitStatsLib()
|
||||||
, CONFIG_PATH = GitStatsLib.CONFIG_PATH
|
, CONFIG_PATH = GitStatsLib.CONFIG_PATH
|
||||||
|
|
Loading…
Reference in a new issue