markmap-cli
Advanced tools
Comparing version 0.1.0 to 0.1.1
@@ -8,11 +8,9 @@ #!/usr/bin/env node | ||
program | ||
.version(require('../package.json').version); | ||
program | ||
.command('create <input>') | ||
.version(require('../package.json').version) | ||
.description('Create a markmap from a Markdown input file') | ||
.option('-o, --output <output>', 'Specify filename of the output HTML') | ||
.option('--no-open', 'Do not open the output file after generation') | ||
.arguments('<input>') | ||
.option('-o, --output <output>', 'specify filename of the output HTML') | ||
.option('--no-open', 'do not open the output file after generation') | ||
.action((input, cmd) => { | ||
createMarkmap(input, { | ||
return createMarkmap(input, { | ||
open: cmd.open, | ||
@@ -19,0 +17,0 @@ output: cmd.output, |
@@ -1,2 +0,2 @@ | ||
/*! markmap-cli v0.1.0 | MIT License */ | ||
/*! markmap-cli v0.1.1 | MIT License */ | ||
'use strict'; | ||
@@ -3,0 +3,0 @@ |
{ | ||
"name": "markmap-cli", | ||
"version": "0.1.0", | ||
"version": "0.1.1", | ||
"description": "Visualize your Markdown as mindmaps with Markmap", | ||
@@ -5,0 +5,0 @@ "author": "Gerald <i@gerald.top>", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
5800
49