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 8fa351d commit b832bbeCopy full SHA for b832bbe
lib/commands/generate.ts
@@ -42,16 +42,13 @@ export class GenerateCommand implements ICommand {
42
private parseRawArgs(rawArgs: string[]) {
43
const collection = this.$options.collection;
44
const schematic = rawArgs.shift();
45
- const {
46
- options: schematicOptions,
47
- args: schematicArgs,
48
- } = parseSchematicSettings(rawArgs);
+ const { options, args } = parseSchematicSettings(rawArgs);
49
50
return {
51
collection,
52
schematic,
53
- schematicOptions,
54
- schematicArgs,
+ schematicOptions: options,
+ schematicArgs: args,
55
};
56
}
57
0 commit comments