@@ -488,10 +488,10 @@ Base.prototype.run = function run(cb) {
488
488
* @return {this }
489
489
*
490
490
* @example <caption>Using a peerDependency generator</caption>
491
- * this.composeWith('bootstrap', { options: { sass: true } });
491
+ * this.composeWith('bootstrap', { sass: true });
492
492
*
493
493
* @example <caption>Using a direct dependency generator</caption>
494
- * this.composeWith('bootstrap', { options: { sass: true } }, {
494
+ * this.composeWith('bootstrap', { sass: true }, {
495
495
* local: require.resolve('generator-bootstrap/app/main.js')
496
496
* });
497
497
*/
@@ -503,21 +503,19 @@ Base.prototype.composeWith = function composeWith(namespace, options, settings)
503
503
504
504
// Pass down the default options so they're correclty mirrored down the chain.
505
505
options = _ . extend ( {
506
- options : _ . extend ( {
507
- skipInstall : this . options . skipInstall ,
508
- 'skip-install' : this . options . skipInstall ,
509
- skipCache : this . options . skipCache ,
510
- 'skip-cache' : this . options . skipCache
511
- } , options . options )
506
+ skipInstall : this . options . skipInstall ,
507
+ 'skip-install' : this . options . skipInstall ,
508
+ skipCache : this . options . skipCache ,
509
+ 'skip-cache' : this . options . skipCache
512
510
} , options ) ;
513
511
514
512
if ( settings . local ) {
515
513
var Generator = require ( settings . local ) ;
516
514
Generator . resolved = require . resolve ( settings . local ) ;
517
515
Generator . namespace = namespace ;
518
- generator = this . env . instantiate ( Generator , options ) ;
516
+ generator = this . env . instantiate ( Generator , { options : options } ) ;
519
517
} else {
520
- generator = this . env . create ( namespace , options ) ;
518
+ generator = this . env . create ( namespace , { options : options } ) ;
521
519
}
522
520
523
521
if ( this . _running ) {
0 commit comments