File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
packages-exp/firebase-exp Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change 36
36
"test:ci" : " echo 'No test suite for firebase wrapper'"
37
37
},
38
38
"dependencies" : {
39
+ "@firebase/analytics-exp" : " 0.0.900" ,
39
40
"@firebase/app-exp" : " 0.0.900" ,
40
41
"@firebase/app-compat" : " 0.0.900" ,
41
42
"@firebase/auth-exp" : " 0.0.900" ,
43
+ "@firebase/database" : " 0.8.3" ,
42
44
"@firebase/functions-exp" : " 0.0.900" ,
43
45
"@firebase/firestore" : " 2.1.2" ,
44
46
"@firebase/storage" : " 0.4.2" ,
Original file line number Diff line number Diff line change @@ -146,7 +146,7 @@ async function publishExpPackages({ dryRun }: { dryRun: boolean }) {
146
146
* Do not push to remote if it's a dryrun
147
147
*/
148
148
if ( ! dryRun ) {
149
- const { commitAndPush } = await prompt ( [
149
+ const { shouldCommitAndPush } = await prompt ( [
150
150
{
151
151
type : 'confirm' ,
152
152
name : 'commitAndPush' ,
@@ -158,7 +158,7 @@ async function publishExpPackages({ dryRun }: { dryRun: boolean }) {
158
158
/**
159
159
* push to github
160
160
*/
161
- if ( commitAndPush ) {
161
+ if ( shouldCommitAndPush ) {
162
162
await commitAndPush ( versions ) ;
163
163
}
164
164
}
You can’t perform that action at this time.
0 commit comments