Skip to content

Commit

Permalink
fix: types
Browse files Browse the repository at this point in the history
  • Loading branch information
gronxb committed Sep 14, 2024
1 parent eb86ab1 commit 9d3a019
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,12 @@ program.description(
"Generate React Native icons from React Icons. It uses SWC to transform the React Icons code to a React Native component."
);

program.command("init").description("Initialize the project").action(init);
program
.command("init")
.description("Initialize the project")
.action(async () => {
await init();
});

program
.command("add")
Expand Down

0 comments on commit 9d3a019

Please sign in to comment.