- Deployer version: 7.0.2 - Deployment OS: MacOs ``` task('invokeSomething', function() { invoke('anotherTask'); }); task('anotherTask', function() { writeln('Another Task'); }); task('beforeTask', function() { writeln('Before Task'); }); before('anotherTask', 'beforeTask'); ```