package
buildtools
Type Members
-
case class
BuildRunner(commandLine: String) extends Logger with Product with Serializable
-
case class
Builder(commandLine: String, directoryToWatch: String, watchRecursively: Boolean = true, eventDelayTimeout: Int = 100) extends Logger with Product with Serializable
-
class
DirectoryWatcher extends Runnable with Logger
Inherited from AnyRef
Inherited from Any
Tool to watch for changes in the file system and trigger a build. We use this tool when developing javascript applications.
Quite often, we like to combine static javascript and/or html files. To do this, we use an Apache Ant build file. To manually run the build every time after a file is changed during the development process is tiresome.
The tools in this package helps watch for changes on the file system and will automatically trigger your build for you.