File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff line change @@ -49,27 +49,22 @@ for (const { name, attributes } of pendingSchema.collections) {
49
49
if ( item . type !== prevItem . type ) {
50
50
console . log ( `CHANGED ${ item . key } (type ${ prevItem . type } -> ${ item . type } )` ) ;
51
51
isNothingFound = false ;
52
- continue ;
53
52
}
54
53
if ( item . required !== prevItem . required ) {
55
54
console . log ( `CHANGED ${ item . key } (required ${ prevItem . required } -> ${ item . required } )` ) ;
56
55
isNothingFound = false ;
57
- continue ;
58
56
}
59
57
if ( item . array !== prevItem . array ) {
60
58
console . log ( `CHANGED ${ item . key } (array ${ prevItem . array } -> ${ item . array } )` ) ;
61
59
isNothingFound = false ;
62
- continue ;
63
60
}
64
61
if ( item . size !== prevItem . size ) {
65
62
console . log ( `CHANGED ${ item . key } (size ${ prevItem . size } -> ${ item . size } )` ) ;
66
63
isNothingFound = false ;
67
- continue ;
68
64
}
69
65
if ( item . default !== prevItem . default ) {
70
66
console . log ( `CHANGED ${ item . key } (default ${ prevItem . default } -> ${ item . default } )` ) ;
71
67
isNothingFound = false ;
72
- continue ;
73
68
}
74
69
}
75
70
You can’t perform that action at this time.
0 commit comments