natron-cli
v0.1.1
Published
Run Tasks from the Command-Line
Downloads
1
Readme
Run Tasks from the Command-Line
This module is part of Natron and contains the command-line utility for running tasks defined in the natronfile
.
Usage
$ natron taskName [...taskArgs]
Example
natronfile.js
export function greet(name: string): void {
console.log(`Hello ${name}`);
}
.natronrc
{
"transpiler": "babel"
}