Skip to content

Commit c81247a

Browse files
committed
Misc nits.
1 parent e779577 commit c81247a

File tree

3 files changed

+1
-6
lines changed

3 files changed

+1
-6
lines changed

src/deploy/functions/runtimes/node/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ export class Delegate {
6666
// to decide whether to use the JS export method of discovery or the HTTP container contract
6767
// method of discovery.
6868
_sdkVersion: string | undefined = undefined;
69-
7069
get sdkVersion(): string {
7170
if (this._sdkVersion === undefined) {
7271
this._sdkVersion = versioning.getFunctionsSDKVersion(this.sourceDir) || "";

src/emulator/functionsEmulator.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -463,7 +463,7 @@ export class FunctionsEmulator implements EmulatorInstance {
463463
logger.debug(`Building ${runtimeDelegate.name} source`);
464464
await runtimeDelegate.build();
465465

466-
// Retrieve information from runtime delegate
466+
// Retrieve information from the runtime delegate.
467467
emulatableBackend.runtime = runtimeDelegate.runtime;
468468
emulatableBackend.bin = runtimeDelegate.bin;
469469

@@ -522,7 +522,6 @@ export class FunctionsEmulator implements EmulatorInstance {
522522
);
523523
return;
524524
}
525-
526525
// Before loading any triggers we need to make sure there are no 'stale' workers
527526
// in the pool that would cause us to run old code.
528527
this.workerPools[emulatableBackend.codebase].refresh();

src/extensions/emulator/optionsHelper.ts

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,6 @@ import { needProjectId } from "../../projectUtils";
1515
import { Emulators } from "../../emulator/types";
1616
import { SecretEnvVar } from "../../deploy/functions/backend";
1717

18-
/**
19-
*
20-
*/
2118
export async function buildOptions(options: any): Promise<any> {
2219
const extDevDir = localHelper.findExtensionYaml(process.cwd());
2320
options.extDevDir = extDevDir;

0 commit comments

Comments
 (0)