Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 773 Bytes

File metadata and controls

41 lines (27 loc) · 773 Bytes
title Run Dependencies
description
linkTitle RunDeps
menu
main
parent weight
task-syntax
11

RunDeps attribute

By default, the dependencies of a task are run sequentially, in the order they are listed.
However we may prefer for all the dependencies of a task to be run in parallel.

The solution would be to set the RunDeps attribute to async (defaults to sync).

### build-all

Requires: build-js, build-css

RunDeps: async

This will result in both build-js and build-css being run in parallel.

The default is sync, which can be omitted or specified.

### build-all

Requires: build-js, build-css

RunDeps: sync

is the same as

### build-all

Requires: build-js, build-css