File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ export default class Queue {
5050 }
5151 }
5252
53- if ( ! snapshot . options || ( ! snapshot . options . web && ! snapshot . options . mobile ) ) {
53+ if ( ! snapshot . options || ( snapshot . options && ! snapshot . options . web && ! snapshot . options . mobile ) ) {
5454 this . generateVariants ( snapshot , this . ctx . config ) ;
5555 }
5656 }
@@ -290,11 +290,11 @@ export default class Queue {
290290 }
291291 }
292292
293- if ( snapshot && snapshot . name && ! this . snapshotNames . includes ( snapshot . name ) ) {
293+ if ( snapshot && snapshot . name && ! this . snapshotNames . includes ( snapshot . name ) && ! drop ) {
294294 this . snapshotNames . push ( snapshot . name ) ;
295295 }
296296
297- if ( snapshot ) {
297+ if ( snapshot && ! drop ) {
298298 this . processGenerateVariants ( snapshot ) ;
299299 }
300300
You can’t perform that action at this time.
0 commit comments