diff2html-cli
Advanced tools
Comparing version 1.4.6-beta3 to 1.4.6-beta4
{ | ||
"name": "diff2html-cli", | ||
"version": "1.4.6-beta3", | ||
"version": "1.4.6-beta4", | ||
"homepage": "https://www.github.com/rtfpessoa/diff2html-cli", | ||
@@ -49,3 +49,3 @@ "description": "Fast Diff to colorized HTML", | ||
"copy-paste": "^1.1.4", | ||
"diff2html": "^2.0.0-beta9", | ||
"diff2html": "^2.0.0-beta10", | ||
"extend": "^3.0.0", | ||
@@ -52,0 +52,0 @@ "open": "0.0.5", |
@@ -57,14 +57,15 @@ # diff2html-cli | ||
Options: | ||
-s, --style Output style [string] [choices: "line", "side"] [default: "line"] | ||
--su, --summary Show files summary [string] [choices: "closed", "open", "hidden"] [default: "closed"] | ||
--lm, --matching Diff line matching type [string] [choices: "lines", "words", "none"] [default: "none"] | ||
--lmt, --matchWordsThreshold Diff line matching word threshold [string] [default: "0.25"] | ||
-f, --format Output format [string] [choices: "html", "json"] [default: "html"] | ||
-d, --diff Diff style [string] [choices: "word", "char"] [default: "word"] | ||
-i, --input Diff input source [string] [choices: "file", "command", "stdin"] [default: "command"] | ||
-o, --output Output destination [string] [choices: "preview", "stdout"] [default: "preview"] | ||
-u, --diffy Upload to diffy.org [string] [choices: "browser", "pbcopy", "print"] | ||
-F, --file Send output to file (overrides output option) [string] | ||
--version Show version number [boolean] | ||
-h, --help Show help [boolean] | ||
-s, --style Output style [string] [choices: "line", "side"] [default: "line"] | ||
--su, --summary Show files summary [string] [choices: "closed", "open", "hidden"] [default: "closed"] | ||
--lm, --matching Diff line matching type [string] [choices: "lines", "words", "none"] [default: "none"] | ||
--lmt, --matchWordsThreshold Diff line matching word threshold [string] [default: "0.25"] | ||
--lmm, --matchingMaxComparisons Diff line matching maximum line comparisons of a block of changes [default: 2500] | ||
-f, --format Output format [string] [choices: "html", "json"] [default: "html"] | ||
-d, --diff Diff style [string] [choices: "word", "char"] [default: "word"] | ||
-i, --input Diff input source [string] [choices: "file", "command", "stdin"] [default: "command"] | ||
-o, --output Output destination [string] [choices: "preview", "stdout"] [default: "preview"] | ||
-u, --diffy Upload to diffy.org [string] [choices: "browser", "pbcopy", "print"] | ||
-F, --file Send output to file (overrides output option) [string] | ||
--version Show version number [boolean] | ||
-h, --help Show help [boolean] | ||
@@ -71,0 +72,0 @@ Examples: |
@@ -56,2 +56,11 @@ #!/usr/bin/env node | ||
.options({ | ||
'lmm': { | ||
alias: 'matchingMaxComparisons', | ||
describe: 'Diff line matching maximum line comparisons of a block of changes', | ||
nargs: 1, | ||
type: 'string', | ||
default: '2500' | ||
} | ||
}) | ||
.options({ | ||
'f': { | ||
@@ -58,0 +67,0 @@ alias: 'format', |
18727
385
102
Updateddiff2html@^2.0.0-beta10