When publishing a plugin in the Bubble Plugin Marketplace, you might encounter issues such as minification errors, validation problems, or others. This article will walk you through troubleshooting steps to resolve these common publishing errors.
Troubleshooting Obfuscation and Minification Issues
Publishing errors frequently happen due to challenges with obfuscation or minification. Follow these steps to troubleshoot:
Open the "Publish" tab in the plugin editor.
Uncheck the option labeled "Obfuscate client-facing code."
Attempt to publish your plugin again. If the error is resolved, the issue is linked to the obfuscation process.
Using the Console Command
If issues persist even with obfuscation disabled, bypass the minification process as a next step. Use the console command window.do_not_minify_plugin = true. Here's how to proceed:
Open the plugin editor in a new tab or window.
Right-click (or command-click on a Mac) inside the editor.
Select "Inspect" or "Inspect Element" to open developer tools.
Navigate to the Console tab.
Enter the following command: window.do_not_minify_plugin = true.
Press "Enter" on your keyboard.
If you're unsure how to open your browser console, you can refer to this resource for instructions.
Once the console command has been executed, try publishing your plugin again. If issues still persist, it may help to verify that other submission details, such as demo links, are complete and correct.
