Skip to content

Instantly share code, notes, and snippets.

@alieslamifard
Created March 5, 2019 14:28
Show Gist options
  • Select an option

  • Save alieslamifard/13239c046e799eeff510ab096b8ef046 to your computer and use it in GitHub Desktop.

Select an option

Save alieslamifard/13239c046e799eeff510ab096b8ef046 to your computer and use it in GitHub Desktop.
yeoman generator
constructor(args, opts) {
super(args, opts);
// Define argument.
this.argument('arg1', { type: String, required: false });
// Define options
this.option('coffee', { type: String, required: false });
// And you can then access it later; e.g.
// this.log(this.options.arg1);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment