Last active
October 2, 2015 06:27
-
-
Save trabus/f40ccf045756e6a1deee to your computer and use it in GitHub Desktop.
Proxy installing a blueprint from another blueprint
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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