We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bac379 commit 5c90239Copy full SHA for 5c90239
packages/app/src/app/store/providers/Utils/create-zip/index.js
@@ -144,9 +144,7 @@ export async function createZip(
144
145
let promise = null;
146
147
- if (
148
- modules.find(m => m.title === 'package.json' && m.directoryShortid == null)
149
- ) {
+ if (directories.find(m => m.title === 'src' && m.directoryShortid == null)) {
150
// This is a full project, with all files already in there. We need to create
151
// a zip by just adding all existing files to it (downloading binaries too).
152
promise = import(/* webpackChunkName: 'full-zip' */ './full').then(
0 commit comments