File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 15
15
" @firebase/auth-exp" ,
16
16
" @firebase/auth-compat" ,
17
17
" @firebase/auth-types-exp" ,
18
+ " @firebase/functions-compat" ,
18
19
" @firebase/functions-exp" ,
19
20
" @firebase/functions-types-exp" ,
20
21
" @firebase/installations-exp" ,
Original file line number Diff line number Diff line change @@ -89,6 +89,7 @@ async function main() {
89
89
await exec ( 'yarn changeset status' ) ;
90
90
console . log ( `::set-output name=BLOCKING_FAILURE::false` ) ;
91
91
} catch ( e ) {
92
+ console . log ( e ) ;
92
93
const messageLines = e . message . replace ( / 🦋 e r r o r / g, '' ) . split ( '\n' ) ;
93
94
let formattedStatusError =
94
95
'- Changeset formatting error in following file:%0A' ;
@@ -112,9 +113,7 @@ async function main() {
112
113
}
113
114
try {
114
115
const diffData = await getDiffData ( ) ;
115
- if ( diffData == null ) {
116
- process . exit ( ) ;
117
- } else {
116
+ if ( diffData != null ) {
118
117
const { changedPackages, changesetFile } = diffData ;
119
118
const changesetPackages = await parseChangesetFile ( changesetFile ) ;
120
119
const missingPackages = [ ...changedPackages ] . filter (
You can’t perform that action at this time.
0 commit comments