We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7050e53 commit 632d60dCopy full SHA for 632d60d
lib/index.js
@@ -592,7 +592,10 @@ class Generator extends Base {
592
this._options[name] = config;
593
}
594
595
- this.parseOptions();
+ if (!this.options.skipParseOptions) {
596
+ this.parseOptions();
597
+ }
598
+
599
if (config.storage && this.options[name] !== undefined) {
600
const storage =
601
typeof config.storage === 'string'
@@ -642,7 +645,10 @@ class Generator extends Base {
642
645
643
646
this._arguments.push(config);
644
647
648
649
650
651
652
return this;
653
654
0 commit comments