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
Our devDependencies are NOT recognized as dependency type: development.
dependency type: development
Extract from package.json:
package.json
"devDependencies": { "@testing-library/react-hooks": "^5.1.3", "serve": "^11.3.2" }
And output from the GithubAction:
loaded merge config: - match: dependency_type: development update_type: all - match: dependency_type: production update_type: security:minor - match: dependency_type: production update_type: semver:minor title: "Bump @testing-library/react-hooks from 5.1.3 to 7.0.2 in /frontend" depName: @testing-library/react-hooks from: 5.1.3 to: 7.0.2 dependency type: production security critical: false config: production:security:minor config: production:semver:minor manual merging required
and
loaded merge config: - match: dependency_type: development update_type: all - match: dependency_type: production update_type: security:minor - match: dependency_type: production update_type: semver:minor title: "Bump serve from 11.3.2 to 12.0.1 in /frontend" depName: serve from: 11.3.2 to: 12.0.1 dependency type: production security critical: false config: production:security:minor config: production:semver:minor manual merging required
Any suggestions?
The text was updated successfully, but these errors were encountered:
I found the problem. It's because the package.json is not directly in the root directory. It is in a subdirectory. Will create a PR.
Sorry, something went wrong.
The same seems to be true for php / composer. Although phpunit is declared (as it should be) under require-dev, it is identified as a production type.
require-dev
I ran into this as well. Is there a way to specify a working dir?
Same is happening for ruby dependencies
No branches or pull requests
Our devDependencies are NOT recognized as
dependency type: development
.Extract from
package.json
:And output from the GithubAction:
and
Any suggestions?
The text was updated successfully, but these errors were encountered: