Skip to content

Commit

Permalink
Update npm.go
Browse files Browse the repository at this point in the history
Change term to 'node_modules' and improve grammar

Fixes #202
  • Loading branch information
flcdrg authored Oct 13, 2023
1 parent 3a09931 commit d19409d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/utils/npm.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func CalculateNpmDependenciesList(executablePath, srcPath, moduleId string, npmP
printMissingDependenciesWarning("optionalDependencies", missingOptionalDeps, log)
}
if len(otherMissingDeps) > 0 {
log.Warn("The following dependencies will not be included in the build-info, because they are missing in the npm cache: '" + strings.Join(otherMissingDeps, ",") + "'.\nHint: Try to delete 'node_models' and/or 'package-lock.json'.")
log.Warn("The following dependencies will not be included in the build-info, because they are missing in the npm cache: '" + strings.Join(otherMissingDeps, ",") + "'.\nHint: Try deleting 'node_modules' and/or 'package-lock.json'.")
}
return dependenciesList, nil
}
Expand Down

0 comments on commit d19409d

Please sign in to comment.