You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
463 B
463 B
Usage Examples
There are three formats you can use to run this task.
Short
clean: ["path/to/dir/one", "path/to/dir/two"]
Medium (specific targets with global options)
clean: {
build: ["path/to/dir/one", "path/to/dir/two"],
release: ["path/to/another/dir/one", "path/to/another/dir/two"]
},
Long (specific targets with per target options)
clean: {
build: {
src: ["path/to/dir/one", "path/to/dir/two"]
}
}