Skip to content

Instantly share code, notes, and snippets.

@tantaman
Last active January 1, 2016 17:09
Show Gist options
  • Save tantaman/8175430 to your computer and use it in GitHub Desktop.
Save tantaman/8175430 to your computer and use it in GitHub Desktop.
Yeoman notes

Yeoman generators stink

They are not composable. If I use yo webapp and make some progress, I can't later do yo angular or yo requirejs

This also leads to a bunch of out of date generators. If the "yeoman style" changes I can't be certain that all the generators that are out there have updated as well.

Generators should be additive. yo angular should depend on yo webapp, for example. This way when updates are made to the webapp generator then the angular generator (or any generator that builds on webapp) will also get them.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment