File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import {logHelpDev} from '../../help/deprecated/dev.help';
33import { logHelpEmulatorStart } from '../../help/emulator.start.help' ;
44import { logHelpEmulatorWait } from '../../help/emulator.wait.help' ;
55import { logHelpFunctionsBuild } from '../../help/functions.build.help' ;
6- import { logHelpFunctionsEject } from '../../help/functions.init.help' ;
6+ import { logHelpFunctionsInit } from '../../help/functions.init.help' ;
77import { start } from '../../services/emulator/start.services' ;
88import { stop } from '../../services/emulator/stop.services' ;
99import { wait } from '../../services/emulator/wait.services' ;
@@ -55,7 +55,7 @@ export const helpDev = (args?: string[]) => {
5555 logHelpFunctionsBuild ( args ) ;
5656 break ;
5757 case 'eject' :
58- logHelpFunctionsEject ( args ) ;
58+ logHelpFunctionsInit ( args ) ;
5959 break ;
6060 default :
6161 logHelpDev ( args ) ;
Original file line number Diff line number Diff line change 11import { red } from 'kleur' ;
22import { logHelpFunctionsBuild } from '../help/functions.build.help' ;
33import { logHelpFunctions } from '../help/functions.help' ;
4- import { logHelpFunctionsEject } from '../help/functions.init.help' ;
4+ import { logHelpFunctionsInit } from '../help/functions.init.help' ;
55import { logHelpFunctionsPublish } from '../help/functions.publish.help' ;
66import { logHelpFunctionsUpgrade } from '../help/functions.upgrade.help' ;
77import { build } from '../services/functions/build/build.services' ;
@@ -41,7 +41,7 @@ export const helpFunctions = (args?: string[]) => {
4141 break ;
4242 case 'init' :
4343 case 'eject' :
44- logHelpFunctionsEject ( args ) ;
44+ logHelpFunctionsInit ( args ) ;
4545 break ;
4646 case 'publish' :
4747 logHelpFunctionsPublish ( args ) ;
Original file line number Diff line number Diff line change @@ -27,6 +27,6 @@ ${FUNCTIONS_INIT_DESCRIPTION}
2727${ usage }
2828` ;
2929
30- export const logHelpFunctionsEject = ( args ?: string [ ] ) => {
30+ export const logHelpFunctionsInit = ( args ?: string [ ] ) => {
3131 console . log ( helpOutput ( args ) === 'doc' ? doc : help ) ;
3232} ;
You can’t perform that action at this time.
0 commit comments