Handbook
Glossary
analyze-codebase-path ( path -- )
Vocabulary
codebase-analyzer
Inputs
path
an
object
Outputs
None
Definition
USING:
combinators
formatting
io
io.backend
kernel
;
IN:
codebase-analyzer
:
analyze-codebase-path
( path -- )
{
[
normalize-path
"project at path `%s`"
sprintf
print
]
[
uses-git?
[
"uses git"
print
]
when
]
[
uses-repo?
[
"uses repo"
print
]
when
]
[
has-package-json?
[
"has a package.json file"
print
]
when
]
}
cleave
;