Allows you to run build tasks in serial or parallel, and chain tasks together. Formats output automatically for console or TeamCity depending on environment. Stops running child processes on error.
const { Build, log, node, parallel, stepAsync, yarn } = require('@trademe/observabuild');
const INITIAL_STATE = {
};
new Build(INITIAL_STATE)
.start(
parallel(
yarn({ command: 'test:delay', name: 'Async One', prefix: 'Async1' }),
node({ command: './test/delay.js', name: 'Async Two', prefix: 'Async2' })
),
stepAsync(action => {
action.log('starting long running task');
if (someLongRunningTask()) {
action.done('finished long running task');
} else {
action.error('task failed');
}
}, { name: 'Long running task', prefix: 'Three' }),
log('Build succeeded')
);