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 you make a new release with "npm run release", and release.zip already exists, it updates the zip folder instead of overwriting it.
As a result, you can end up with multiple versions of your build inside release.zip, and you might not see any updates when uploading the new version to Next. I also had some weird errors with loading web workers, that was (somehow) resolved after removing the old versions.
Specifically, the problem is in package.json, inside: "archive": "cd build && zip -r ../release.zip .",
release.zip should be overwritten, not updated.
The text was updated successfully, but these errors were encountered:
When you make a new release with "npm run release", and release.zip already exists, it updates the zip folder instead of overwriting it.
As a result, you can end up with multiple versions of your build inside release.zip, and you might not see any updates when uploading the new version to Next. I also had some weird errors with loading web workers, that was (somehow) resolved after removing the old versions.
Specifically, the problem is in package.json, inside:
"archive": "cd build && zip -r ../release.zip .",
release.zip should be overwritten, not updated.
The text was updated successfully, but these errors were encountered: