Skip to content

Commit

Permalink
Update packages/repack/commands.js
Browse files Browse the repository at this point in the history
Co-authored-by: Jakub Romańczyk <[email protected]>
  • Loading branch information
szymonrybczak and jbroma authored Dec 15, 2023
1 parent 3d5a582 commit b0461ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/repack/commands.js
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,10 @@ function getCommands() {

const cliCommands = Object.values(getCommands());

const startCommand = Object.values(cliCommands).find(
const startCommand = cliCommands.find(
(command) => command.name === 'start'
);
const bundleCommand = Object.values(cliCommands).find(
const bundleCommand = cliCommands.find(
(command) => command.name === 'bundle'
);

Expand Down

0 comments on commit b0461ee

Please sign in to comment.