Skip to content

Commit d2a3da3

Browse files
committed
styl: fix linting errors
1 parent a2c15b8 commit d2a3da3

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

lib/commands/generate.ts

+3-6
Original file line numberDiff line numberDiff line change
@@ -42,16 +42,13 @@ export class GenerateCommand implements ICommand {
4242
private parseRawArgs(rawArgs: string[]) {
4343
const collection = this.$options.collection;
4444
const schematic = rawArgs.shift();
45-
const {
46-
options: schematicOptions,
47-
args: schematicArgs,
48-
} = parseSchematicSettings(rawArgs);
45+
const { options, args } = parseSchematicSettings(rawArgs);
4946

5047
return {
5148
collection,
5249
schematic,
53-
schematicOptions,
54-
schematicArgs,
50+
schematicOptions: options,
51+
schematicArgs: args,
5552
};
5653
}
5754
}

0 commit comments

Comments
 (0)