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
I'm submitting a ... (check one with "x"):
Everything after first @ is stripped to remove version, that conflict with plugins, where @ is included in the id
Current behavior:
Using plugin "@mauron85/cordova-plugin-background-geolocation": "^3.0.3",
cordova-check-plugins fails when this code is executed
var idToCheck = unconstrainVersions ? source.id.replace(/(@([^~]?).*)$/, '') : source.id;
as idToCheck now is blank
Check for version fails
Changing the regex to @([^@]+)$ that takes the last @ solves the problem
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm submitting a ... (check one with "x"):
Bug report
Everything after first @ is stripped to remove version, that conflict with plugins, where @ is included in the id
Current behavior:
Using plugin
"@mauron85/cordova-plugin-background-geolocation": "^3.0.3",
cordova-check-plugins fails when this code is executed
var idToCheck = unconstrainVersions ? source.id.replace(/(@([^~]?).*)$/, '') : source.id;
as idToCheck now is blank
Check for version fails
Changing the regex to @([^@]+)$ that takes the last @ solves the problem
The text was updated successfully, but these errors were encountered: