Skip to content

Commit

Permalink
1.0.2: Fix missing dependency errors
Browse files Browse the repository at this point in the history
  • Loading branch information
dmmulroy committed Jan 5, 2024
1 parent e73b6c3 commit 7129fd3
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-melange-app",
"version": "1.0.1",
"version": "1.0.2",
"description": "create-melange-app",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion src/env_check/component.re
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ let make = (~onEnvCheck=?) => {
}
: {
React.string(
{js|Please fix the above issues before continuing. 🛠 |js},
{js|Please install your missing depedencies and try again.|js},
);
}}
</Text>
Expand Down
3 changes: 2 additions & 1 deletion src/init/component.re
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,8 @@ let make = (~name as initial_name) => {
| _ =>
switch (env_check_result, configuration, scaffold_result) {
| (None, _, _) => <Env_check.Component onEnvCheck=on_env_check />
| (Some(`Fail), _, _) =>
<Env_check.Component onEnvCheck=on_env_check />
| (Some(`Pass), None, _) =>
<Wizard
initial_configuration
Expand Down Expand Up @@ -213,7 +215,6 @@ let make = (~name as initial_name) => {
</Link>
</Text>
</>
| _ => React.null
}
}}
</Box>
Expand Down

0 comments on commit 7129fd3

Please sign in to comment.