-
Is it possible to run resolve, inspect or show commands in If I run e.g.
How to fill these arguments? Please give some examples. |
Beta Was this translation helpful? Give feedback.
Answered by
lefou
Oct 17, 2022
Replies: 1 comment 1 reply
-
According to this issue, #418, you can use Example: mill --repl
Loading...
Mill Build Tool, version 0.10.8
@ resolve(replApplyHandler.evaluator, "_")()
[1/1] resolve
all
assembly
bsp
clean
contrib
dev
docs
init
inspect
installLocal
integration
launcher
main
millBinPlatform
millBootstrap
millLastTag
millVersion
par
path
plan
resolve
scalajslib
scalalib
scalanativelib
show
showNamed
shutdown
shutdown
testrunner
uploadToGithub
validate
version
version
visualize
visualizePlan
res0: List[String] = List(
"bsp",
"contrib",
"dev",
"docs",
"integration",
"main",
"scalajslib",
"scalalib",
"scalanativelib",
"testrunner",
"assembly",
"launcher",
"millBinPlatform",
"millBootstrap",
"millLastTag",
"millVersion",
"shutdown",
"version",
"version",
"resolve",
"plan",
"path",
"inspect",
"all",
"par",
"show",
"showNamed",
"clean",
"visualize",
"visualizePlan",
"shutdown",
"init",
...
|
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
jk-1
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
According to this issue, #418, you can use
replyApplyHandler.evaluator
to get access to the neededEvaluator
instance.Example: