Skip to content

Commit 1885dec

Browse files
committedDec 2, 2016
Single way of passing both arguments and options to composed generator
1 parent a852f62 commit 1885dec

File tree

2 files changed

+15
-18
lines changed

2 files changed

+15
-18
lines changed
 

‎lib/index.js

+8-10
Original file line numberDiff line numberDiff line change
@@ -488,10 +488,10 @@ Base.prototype.run = function run(cb) {
488488
* @return {this}
489489
*
490490
* @example <caption>Using a peerDependency generator</caption>
491-
* this.composeWith('bootstrap', { options: { sass: true } });
491+
* this.composeWith('bootstrap', { sass: true });
492492
*
493493
* @example <caption>Using a direct dependency generator</caption>
494-
* this.composeWith('bootstrap', { options: { sass: true } }, {
494+
* this.composeWith('bootstrap', { sass: true }, {
495495
* local: require.resolve('generator-bootstrap/app/main.js')
496496
* });
497497
*/
@@ -503,21 +503,19 @@ Base.prototype.composeWith = function composeWith(namespace, options, settings)
503503

504504
// Pass down the default options so they're correclty mirrored down the chain.
505505
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
512510
}, options);
513511

514512
if (settings.local) {
515513
var Generator = require(settings.local);
516514
Generator.resolved = require.resolve(settings.local);
517515
Generator.namespace = namespace;
518-
generator = this.env.instantiate(Generator, options);
516+
generator = this.env.instantiate(Generator, {options: options});
519517
} else {
520-
generator = this.env.create(namespace, options);
518+
generator = this.env.create(namespace, {options: options});
521519
}
522520

523521
if (this._running) {

‎test/base.js

+7-8
Original file line numberDiff line numberDiff line change
@@ -779,13 +779,12 @@ describe('Base', function () {
779779

780780
it('pass options and arguments to the composed generators', function (done) {
781781
this.dummy.composeWith('composed:gen', {
782-
options: { foo: 'bar', 'skip-install': true },
783-
arguments: ['foo']
782+
foo: 'bar',
783+
'skip-install': true
784784
});
785785

786786
this.dummy.run(function () {
787787
assert.equal(this.spy.firstCall.thisValue.options.foo, 'bar');
788-
assert.deepEqual(this.spy.firstCall.thisValue.args, ['foo']);
789788
done();
790789
}.bind(this));
791790
});
@@ -807,14 +806,14 @@ describe('Base', function () {
807806
});
808807

809808
it('pass options and arguments to the composed generators', function (done) {
810-
this.dummy.composeWith('dumb', {
811-
options: { foo: 'bar', 'skip-install': true },
812-
arguments: ['foo']
813-
}, { local: this.stubPath });
809+
this.dummy.composeWith(
810+
'dumb',
811+
{ foo: 'bar', 'skip-install': true },
812+
{ local: this.stubPath }
813+
);
814814

815815
this.dummy.run(function () {
816816
assert.equal(this.spy.firstCall.thisValue.options.foo, 'bar');
817-
assert.deepEqual(this.spy.firstCall.thisValue.args, ['foo']);
818817
done();
819818
}.bind(this));
820819
});

0 commit comments

Comments
 (0)
Please sign in to comment.