Comparing version 0.0.10 to 0.0.11
@@ -6,3 +6,8 @@ #!/usr/bin/env node | ||
' croc deps [--lenient --json] \n'+ | ||
' croc ( link [--lenient] | install | test | build | publish ) \n'+ | ||
' croc link [--lenient] \n'+ | ||
' croc install \n'+ | ||
' croc test \n'+ | ||
' croc build \n'+ | ||
' croc publish \n'+ | ||
' croc exec CMD \n'+ | ||
' \n'+ | ||
@@ -90,2 +95,4 @@ 'Options: \n'+ | ||
exec.exec('npm show %PKG_NAME% versions --json | grep -q \\"%PKG_VERSION%\\" || npm publish'); | ||
} else if (args.exec) { | ||
exec.exec(args.CMD); | ||
} |
{ | ||
"name": "croc", | ||
"version": "0.0.10", | ||
"version": "0.0.11", | ||
"description": "monolithic repository manager", | ||
@@ -5,0 +5,0 @@ "bin": { |
@@ -18,12 +18,17 @@ # croc | ||
``` | ||
Usage: | ||
croc ls [--json] | ||
croc deps [--lenient --json] | ||
croc ( link [--lenient] | install | test | build | publish ) | ||
Options: | ||
-h --help Show this screen. | ||
--version Show version. | ||
--json Show information in JSON format. | ||
--lenient Ignore that project dependency doesn't satisfies version (semver) | ||
Usage: | ||
croc ls [--json] | ||
croc deps [--lenient --json] | ||
croc link [--lenient] | ||
croc install | ||
croc test | ||
croc build | ||
croc publish | ||
croc exec CMD | ||
Options: | ||
-h --help Show this screen. | ||
--version Show version. | ||
--json Show information in JSON format. | ||
--lenient Ignore that project dependency doesnt satisfies version (semver) | ||
``` |
6209
83
34