-
-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
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
Incorrect file used in plugin.xml #363
Comments
Hi and thank you for spotting this! |
Thank you for the quick response! |
Sure thing, we will work on it, thank you for your response! |
This issue has gone three weeks without activity. In another week, I will close it. But! If you comment or otherwise update it, I will reset the clock, and if you label it "A weed is but an unloved flower." ― Ella Wheeler Wilcox 🥀 |
issue is still relevant. |
hi Sentry team ,any updates here ? |
Sorry, it's harder to keep track of closed issues, I will work on this briefly but it may take a while ( a week or two) since the code reviewer will take some days off |
In the plugin.xml file for Sentry Cordova, the wrong JavaScript files are referenced. Currently, the unminified files are being used:
However, the minified files should be used instead to reduce file size and improve performance. The correct references should be:
The minified files are already present in the bundle but are not being referenced correctly.
Expected Behavior:
Replace the references in plugin.xml to use the minified .min.js files and their corresponding .min.js.map files.
Steps to Reproduce:
Check the plugin.xml in the Sentry Cordova plugin.
Note that the unminified files are referenced instead of the minified versions.
Impact:
Using unminified files increases the file size unnecessarily and can slow down the application.
Proposed Fix:
Update plugin.xml to reference the minified files.
The text was updated successfully, but these errors were encountered: