Skip to content

Instantly share code, notes, and snippets.

@kadamwhite
Created March 6, 2015 17:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kadamwhite/dbc82151162fa119b283 to your computer and use it in GitHub Desktop.
Save kadamwhite/dbc82151162fa119b283 to your computer and use it in GitHub Desktop.

for q1, I've seen plugins that support eg

taskname: {
  options: {
    some: 'opts'
  },
  target1: {
    src: []
  },
  target2: {
    src: []
  }
}

but I've also seen

taskname: {
  options: {
    some_default_1: 'opts'
  },
  target1: {
    options: {
      some_target_1: 'opts'
    },
    src: []
  },
  target2: {
    src: []
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment