mirror of
https://github.com/github/semantic.git
synced 2024-11-28 10:15:55 +03:00
Clarify the usage around graphing projects.
This commit is contained in:
parent
19eb04c51e
commit
0c08208265
@ -83,7 +83,7 @@ arguments = info (version <*> helper <*> ((,) <$> optionsParser <*> argumentsPar
|
|||||||
filesOrStdin <- Right <$> some (argument filePathReader (metavar "FILES...")) <|> pure (Left stdin)
|
filesOrStdin <- Right <$> some (argument filePathReader (metavar "FILES...")) <|> pure (Left stdin)
|
||||||
pure $ Task.readBlobs filesOrStdin >>= AST.runASTParse format
|
pure $ Task.readBlobs filesOrStdin >>= AST.runASTParse format
|
||||||
|
|
||||||
graphCommand = command "graph" (info graphArgumentsParser (progDesc "Compute a graph for a directory or entry point"))
|
graphCommand = command "graph" (info graphArgumentsParser (progDesc "Compute a graph for a directory or from a top-level entry point module"))
|
||||||
graphArgumentsParser = do
|
graphArgumentsParser = do
|
||||||
graphType <- flag Graph.ImportGraph Graph.ImportGraph (long "imports" <> help "Compute an import graph (default)")
|
graphType <- flag Graph.ImportGraph Graph.ImportGraph (long "imports" <> help "Compute an import graph (default)")
|
||||||
<|> flag' Graph.CallGraph (long "calls" <> help "Compute a call graph")
|
<|> flag' Graph.CallGraph (long "calls" <> help "Compute a call graph")
|
||||||
|
Loading…
Reference in New Issue
Block a user