firmament-bash
Version:
Firmament module for interpreting commands in JSON files using bash
55 lines (54 loc) • 1.29 kB
JSON
{
"description": "Command Group 1",
"options": {
"quietSpawn": true
},
"asynchronousCommands": [
{
"description": "Async Group 1 Task 1",
"suppressOutput": false,
"command": "node",
"outputColor": "blue",
"args": [
"/home/jreeme/src/firmament-bash/js/test/helpers/test-00.js",
"10",
"Async Group 1 task 1: "
]
},
{
"description": "Async Group 1 Task 2",
"command": "node",
"suppressOutput": false,
"outputColor": "green",
"args": [
"/home/jreeme/src/firmament-bash/js/test/helpers/test-00.js",
"5",
"Async Group 1 task 2: "
]
}
],
"serialSynchronizedCommands": [
{
"description": "Sync Group 1 Task 1",
"suppressOutput": false,
"command": "node",
"outputColor": "yellow",
"args": [
"/home/jreeme/src/firmament-bash/js/test/helpers/test-00.js",
"10",
"Sync Group 1 task 1: "
]
},
{
"description": "Sync Group 1 Task 2",
"command": "node",
"suppressOutput": false,
"outputColor": "magenta",
"args": [
"/home/jreeme/src/firmament-bash/js/test/helpers/test-00.js",
"5",
"Sync Group 1 task 2: "
]
}
]
}