o

bloop.cli

Commands

object Commands

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Commands
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class About(cliOptions: CliOptions = CliOptions.default) extends RawCommand with Product with Serializable
  2. case class Autocomplete(cliOptions: CliOptions = CliOptions.default, mode: Mode, format: Format, command: Option[String], project: Option[String]) extends RawCommand with Product with Serializable
  3. case class Bsp(protocol: BspProtocol = BspProtocol.Local, host: String = "127.0.0.1", port: Int = 5101, socket: Option[Path] = None, pipeName: Option[String] = None, cliOptions: CliOptions = CliOptions.default) extends RawCommand with Product with Serializable
    Annotations
    @CommandName( "bsp" )
  4. case class Clean(projects: List[String] = Nil, includeDependencies: Boolean = false, cascade: Boolean = false, cliOptions: CliOptions = CliOptions.default) extends RawCommand with Product with Serializable
  5. trait Command extends AnyRef

    Represents the most generic command that exists.

  6. case class Compile(projects: List[String] = Nil, incremental: Boolean = true, pipeline: Boolean = false, reporter: ReporterKind = BloopReporter, watch: Boolean = false, cascade: Boolean = false, cliOptions: CliOptions = CliOptions.default) extends CompilingCommand with Product with Serializable
  7. sealed trait CompilingCommand extends RawCommand
  8. case class Configure(threads: Int = 0, cliOptions: CliOptions = CliOptions.default) extends RawCommand with Product with Serializable
  9. case class Console(projects: List[String] = Nil, incremental: Boolean = true, pipeline: Boolean = false, reporter: ReporterKind = BloopReporter, excludeRoot: Boolean = false, repl: ReplKind = AmmoniteRepl, ammoniteVersion: Option[String] = None, outFile: Option[Path] = None, cliOptions: CliOptions = CliOptions.default) extends CompilingCommand with Product with Serializable
  10. case class Help(cliOptions: CliOptions = CliOptions.default) extends RawCommand with Product with Serializable
  11. case class Link(projects: List[String] = Nil, main: Option[String] = None, incremental: Boolean = true, pipeline: Boolean = false, reporter: ReporterKind = BloopReporter, watch: Boolean = false, optimize: Option[OptimizerConfig] = None, cliOptions: CliOptions = CliOptions.default) extends LinkingCommand with Product with Serializable
  12. sealed trait LinkingCommand extends CompilingCommand
  13. case class Projects(dotGraph: Boolean = false, cliOptions: CliOptions = CliOptions.default) extends RawCommand with Product with Serializable
  14. sealed trait RawCommand extends Command

    Represents a command that is used by the cli and has no user input validation.

  15. case class Run(projects: List[String] = Nil, main: Option[String] = None, incremental: Boolean = true, pipeline: Boolean = false, reporter: ReporterKind = BloopReporter, args: List[String] = Nil, watch: Boolean = false, skipJargs: Boolean = false, optimize: Option[OptimizerConfig] = None, cliOptions: CliOptions = CliOptions.default) extends LinkingCommand with Product with Serializable
  16. case class TcpBsp(host: InetAddress, port: Int, cliOptions: CliOptions) extends ValidatedBsp with Product with Serializable
  17. case class Test(projects: List[String] = Nil, includeDependencies: Boolean = false, cascade: Boolean = false, incremental: Boolean = true, pipeline: Boolean = false, only: List[String] = Nil, args: List[String] = Nil, reporter: ReporterKind = BloopReporter, watch: Boolean = false, cliOptions: CliOptions = CliOptions.default, parallel: Boolean = false) extends CompilingCommand with Product with Serializable
  18. case class UnixLocalBsp(socket: AbsolutePath, cliOptions: CliOptions) extends ValidatedBsp with Product with Serializable
  19. sealed trait ValidatedBsp extends ValidatedCommand
  20. sealed trait ValidatedCommand extends Command

    Represents a command that has gone through an initial layer of validation.

  21. case class WindowsLocalBsp(pipeName: String, cliOptions: CliOptions) extends ValidatedBsp with Product with Serializable