Skip to content

Commit

Permalink
feat: allow overriding commands
Browse files Browse the repository at this point in the history
  • Loading branch information
szymonrybczak committed Dec 21, 2023
1 parent 6eb9595 commit 1a208cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli-config/src/loadConfig.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ function loadConfig(projectRoot: string = findProjectRoot()): Config {
);
},
}),
commands: [...acc.commands, ...config.commands],
commands: [...config.commands, ...acc.commands],
platforms: {
...acc.platforms,
...config.platforms,
Expand Down

0 comments on commit 1a208cc

Please sign in to comment.