This modules provides functions to execute commands.
The following example will create a task that when called will execute `git pull` command.
```ceylon
Task updateTask = command("git pull");
```
[[command]] function is a `Task` wrapper for [[executeCommand]] function.
Commands are executed in a synchronous way. This means that both functions will wait
for command to exit before returning.
Artifacts using Ceylon Build Command Line Platform Tasks Module (1)
Provides `Task` to launch ceylon `compile`, `compile-js`, `doc`, `run`, `run-js` command line tools
### Compile
Tasks to compile to both jvm and javascript backend are available.
They support various options.
Last Release on Feb 13, 2021
- Prev
- 1
- Next