Skip to content

Instantly share code, notes, and snippets.

@trabus
Last active October 2, 2015 06:27
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 trabus/f40ccf045756e6a1deee to your computer and use it in GitHub Desktop.
Save trabus/f40ccf045756e6a1deee to your computer and use it in GitHub Desktop.
Proxy installing a blueprint from another blueprint
module.exports = {
description: '',
// overwriting install, acting as a proxy to the component-test blueprint
install: function(options){
this.project = options.project;
this.ui = options.ui;
var testBlueprint = this.lookupBlueprint('component-test');
return testBlueprint.install(options);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment