org.scalajs.sbtplugin.ScalaJSPlugin

autoImport

object autoImport

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. autoImport
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val FastOptStage: FastOpt.type

  7. val FullOptStage: FullOpt.type

  8. val ModuleKind: linker.ModuleKind.type

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  12. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  13. val fastOptJS: TaskKey[Attributed[File]]

  14. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. val fullOptJS: TaskKey[Attributed[File]]

  16. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  17. def hashCode(): Int

    Definition Classes
    AnyRef → Any
  18. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  19. val jsEnv: TaskKey[JSEnv]

  20. val jsExecutionFiles: TaskKey[Seq[VirtualBinaryFile]]

  21. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  22. final def notify(): Unit

    Definition Classes
    AnyRef
  23. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  24. val scalaJSIR: TaskKey[Attributed[Seq[VirtualScalaJSIRFile]]]

  25. val scalaJSIRCache: SettingKey[Cache]

  26. val scalaJSLinkedFile: TaskKey[Attributed[File]]

  27. val scalaJSLinker: SettingKey[ClearableLinker]

    Persisted instance of the Scala.

    Persisted instance of the Scala.js linker.

    This setting must be scoped per project, configuration, and stage task (fastOptJS or fullOptJS).

    If a task uses the link method of the ClearableLinker, it must be protected from running in parallel with any other task doing the same thing, by tagging the task with the value of usesScalaJSLinkerTag in the same scope. The typical shape of such a task will be:

    myTask in (Compile, fastOptJS) := Def.taskDyn {
      val linker = (scalaJSLinker in (Compile, fastOptJS)).value
      val usesLinkerTag = (usesScalaJSLinkerTag in (Compile, fastOptJS)).value
      // Read the `.value` of other settings and tasks here
    
      Def.task {
        // Do the actual work of the task here, in particular calling
        linker.link(...)
      }.tag(usesLinkerTag)
    }.value,
  28. val scalaJSLinkerConfig: SettingKey[Config]

  29. val scalaJSMainModuleInitializer: TaskKey[Option[ModuleInitializer]]

  30. val scalaJSModuleInitializers: TaskKey[Seq[ModuleInitializer]]

  31. val scalaJSSourceFiles: AttributeKey[Seq[File]]

  32. val scalaJSSourceMap: AttributeKey[File]

  33. val scalaJSStage: SettingKey[Stage]

  34. val scalaJSUseMainModuleInitializer: SettingKey[Boolean]

  35. val scalaJSUseTestModuleInitializer: SettingKey[Boolean]

  36. val scalaJSVersion: String

    The current version of the Scala.

    The current version of the Scala.js sbt plugin and tool chain.

  37. val scalajsp: InputKey[Unit]

    Prints the content of a .

    Prints the content of a .sjsir file in human readable form.

  38. val sjsirFilesOnClasspath: TaskKey[Seq[String]]

    All .

    All .sjsir files on the fullClasspath, used by scalajsp.

  39. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  40. val testHtml: TaskKey[Attributed[File]]

  41. def toString(): String

    Definition Classes
    AnyRef → Any
  42. val usesScalaJSLinkerTag: SettingKey[Tag]

    A tag to indicate that a task is using the value of scalaJSLinker and its link method.

    A tag to indicate that a task is using the value of scalaJSLinker and its link method.

    This setting's value should always be retrieved from the same scope than scalaJSLinker was retrieved from.

    See also

    scalaJSLinker

  43. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  44. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  45. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped