You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When building for firefox, we automatically compress results into a XPI file. This is good for the app code as it is preferred for when submitting the code to firefox.
The problem is that firefox also requires the submission of the source code for extensions that use bundlers. That source code needs to be compressed into any of the following formats: .zip, .tar.gz, .tgz, .tar.bz2
We already provide the ability to zip-source, we should add a way to specify the file type for posterity.
The text was updated successfully, but these errors were encountered:
If anyone needs a workaround for this, you can zipSource for your chrome build and then just zip without source for firefox. That way you get the source zip in .zip format.
sure! you can use extension build --zip to zip your distribution files and extension build --zip-source to zip the source files. you can also combine both:
# Generates a zip artifact for both production and development
extension build --zip-source --zip
When building for firefox, we automatically compress results into a XPI file. This is good for the app code as it is preferred for when submitting the code to firefox.
The problem is that firefox also requires the submission of the source code for extensions that use bundlers. That source code needs to be compressed into any of the following formats: .zip, .tar.gz, .tgz, .tar.bz2
We already provide the ability to zip-source, we should add a way to specify the file type for posterity.
The text was updated successfully, but these errors were encountered: