Usage Examples

There are three formats you can use to run this task.

Short

  1. clean: ["path/to/dir/one", "path/to/dir/two"]

Medium (specific targets with global options)

  1. clean: {
  2. build: ["path/to/dir/one", "path/to/dir/two"],
  3. release: ["path/to/another/dir/one", "path/to/another/dir/two"]
  4. },

Long (specific targets with per target options)

  1. clean: {
  2. build: {
  3. src: ["path/to/dir/one", "path/to/dir/two"]
  4. }
  5. }