File tree Expand file tree Collapse file tree 4 files changed +6
-60
lines changed
Expand file tree Collapse file tree 4 files changed +6
-60
lines changed Original file line number Diff line number Diff line change 22- [ BREAKING] Removed support for '.bolt' rules files.
33- [ BREAKING] Removed support for running emulators with Java versions prior to 21.
44- Add a confirmation in ` firebase init dataconnect ` before asking for app idea description. (#9282 )
5+ - [ BREAKING] Removed deprecated ` firebase --open-sesame ` and ` firebase --close-sesame ` commands. Use ` firebase experiments:enable ` and ` firebase experiments:disable ` instead.
Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ function preTest() {
4040 api . setRefreshToken ( configstore . get ( "tokens" ) . refresh_token ) ;
4141 api . setScopes ( scopes . CLOUD_PLATFORM ) ;
4242 fs . copySync ( source , functionsSource + "/index.js" ) ;
43- execSync ( `${ localFirebase } --open-sesame dotenv` , { cwd : tmpDir } ) ;
4443 console . log ( "Done pretest prep." ) ;
4544}
4645
Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ import * as fs from "node:fs";
99
1010import { configstore } from "../configstore" ;
1111import { errorOut } from "../errorOut" ;
12- import { handlePreviewToggles } from "../handlePreviewToggles" ;
1312import { logger , useFileLogger } from "../logger" ;
1413import * as client from ".." ;
1514import * as fsutils from "../fsutils" ;
@@ -107,12 +106,10 @@ export function cli(pkg: any) {
107106 errorOut ( err ) ;
108107 } ) ;
109108
110- if ( ! handlePreviewToggles ( args ) ) {
111- // determine if there are any arguments. if not, display help
112- if ( ! args . length ) {
113- client . cli . help ( ) ;
114- } else {
115- cmd = client . cli . parse ( process . argv ) ;
116- }
109+ // determine if there are any arguments. if not, display help
110+ if ( ! args . length ) {
111+ client . cli . help ( ) ;
112+ } else {
113+ cmd = client . cli . parse ( process . argv ) ;
117114 }
118115}
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments