File tree Expand file tree Collapse file tree 3 files changed +1
-6
lines changed
deploy/functions/runtimes/node Expand file tree Collapse file tree 3 files changed +1
-6
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,6 @@ export class Delegate {
66
66
// to decide whether to use the JS export method of discovery or the HTTP container contract
67
67
// method of discovery.
68
68
_sdkVersion : string | undefined = undefined ;
69
-
70
69
get sdkVersion ( ) : string {
71
70
if ( this . _sdkVersion === undefined ) {
72
71
this . _sdkVersion = versioning . getFunctionsSDKVersion ( this . sourceDir ) || "" ;
Original file line number Diff line number Diff line change @@ -463,7 +463,7 @@ export class FunctionsEmulator implements EmulatorInstance {
463
463
logger . debug ( `Building ${ runtimeDelegate . name } source` ) ;
464
464
await runtimeDelegate . build ( ) ;
465
465
466
- // Retrieve information from runtime delegate
466
+ // Retrieve information from the runtime delegate.
467
467
emulatableBackend . runtime = runtimeDelegate . runtime ;
468
468
emulatableBackend . bin = runtimeDelegate . bin ;
469
469
@@ -522,7 +522,6 @@ export class FunctionsEmulator implements EmulatorInstance {
522
522
) ;
523
523
return ;
524
524
}
525
-
526
525
// Before loading any triggers we need to make sure there are no 'stale' workers
527
526
// in the pool that would cause us to run old code.
528
527
this . workerPools [ emulatableBackend . codebase ] . refresh ( ) ;
Original file line number Diff line number Diff line change @@ -15,9 +15,6 @@ import { needProjectId } from "../../projectUtils";
15
15
import { Emulators } from "../../emulator/types" ;
16
16
import { SecretEnvVar } from "../../deploy/functions/backend" ;
17
17
18
- /**
19
- *
20
- */
21
18
export async function buildOptions ( options : any ) : Promise < any > {
22
19
const extDevDir = localHelper . findExtensionYaml ( process . cwd ( ) ) ;
23
20
options . extDevDir = extDevDir ;
You can’t perform that action at this time.
0 commit comments