Skip to content

Commit

Permalink
Remove sharp as a nodejs dependency
Browse files Browse the repository at this point in the history
This dependency was wrongly added in the first place and it is not needed.

Fix #159
  • Loading branch information
akalipetis committed Nov 21, 2023
1 parent 7622359 commit 8d2fb75
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion internal/question/dependency_manager.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ func (q *DependencyManager) Ask(ctx context.Context) error {
answers.Dependencies["nodejs"] = map[string]string{"yarn": "^1.22.0"}
} else if exists := utils.FileExists(answers.WorkingDirectory, npmLockFileName); exists {
answers.DependencyManagers = append(answers.DependencyManagers, models.Npm)
answers.Dependencies["nodejs"] = map[string]string{"sharp": "*"}
}

return nil
Expand Down

0 comments on commit 8d2fb75

Please sign in to comment.