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
When running a vpkg command many lines in the v.mod file are deleted.
Module { name: 'symlinker', description: 'Utility to manage symlinks', author: 'Lukas Neubert <lukas.neubert3@gmail.com>', license: 'MIT', repo_url: 'https://github.com/Serkonda/symlinker', version: '0.4.0', dependencies: ['chalk'] }
is stripped down to this:
Module { name: 'symlinker', version: '0.4.0', deps: ['chalk'] }
First error is that the deps property is not conform with the official v.mod and should be changed to dependencies.
deps
dependencies
Second I think that vpkg should not alter any line except the dependencies array. So that all the other information is kept.
The text was updated successfully, but these errors were encountered:
Thanks for reporting it. Still in a middle of simplifying/refactoring for 0.8
Sorry, something went wrong.
No branches or pull requests
When running a vpkg command many lines in the v.mod file are deleted.
is stripped down to this:
First error is that the
deps
property is not conform with the official v.mod and should be changed todependencies
.Second I think that vpkg should not alter any line except the dependencies array. So that all the other information is kept.
The text was updated successfully, but these errors were encountered: