Skip to content

Commit

Permalink
Remove unnecessary options input in forEach
Browse files Browse the repository at this point in the history
  • Loading branch information
Julien Lengrand-Lambert authored and Julien Lengrand-Lambert committed Apr 29, 2018
1 parent 2b19b2a commit 1ac4ac3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ const run = async() => {
program.option(trigger, description, (...args) => fn(config, ...args));
});

commands.forEach(({ trigger, description, fn, options }) => {
commands.forEach(({ trigger, description, fn }) => {
program
.command(trigger)
.description(description)
Expand Down

0 comments on commit 1ac4ac3

Please sign in to comment.