We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
lockfile_generator
Here are the current modules and the commands that they use to generate lockfiles
> grep -r 'Command::new' lockfile_generator/src lockfile_generator/src/npm.rs: let mut command = Command::new("npm"); lockfile_generator/src/poetry.rs: let mut command = Command::new("poetry"); lockfile_generator/src/cargo.rs: let mut command = Command::new("cargo"); lockfile_generator/src/bundler.rs: let mut command = Command::new("bundle"); lockfile_generator/src/pip.rs: let mut command = Command::new("pipenv"); lockfile_generator/src/python_requirements.rs: let mut command = Command::new("pip-compile"); lockfile_generator/src/maven.rs: let mut command = Command::new("mvn"); lockfile_generator/src/go.rs: let mut command = Command::new("go"); lockfile_generator/src/gradle.rs: let mut command = Command::new("gradle"); lockfile_generator/src/yarn.rs: let mut command = Command::new("yarn");
pip.rs calling pipenv is particularly misleading. This issue will track improving these names.
pip.rs
pipenv
Originally posted by @maxrake in #1075 (comment)
The text was updated successfully, but these errors were encountered:
pip-compile
If we name the files after the project that contains the tool, we would need to rename just these two files:
pipenv.rs
python_requirements.rs
pip_tools.rs
Sorry, something went wrong.
kylewillmon
Successfully merging a pull request may close this issue.
Here are the current modules and the commands that they use to generate lockfiles
pip.rs
callingpipenv
is particularly misleading. This issue will track improving these names.Originally posted by @maxrake in #1075 (comment)
The text was updated successfully, but these errors were encountered: