From 54605785da6d1b98435884625017b952bfd16b15 Mon Sep 17 00:00:00 2001 From: Zakary Kamal Ismail Date: Mon, 23 Dec 2019 11:31:24 -0500 Subject: [PATCH] fix(cli): Unused variable `path` --- cli/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cli/index.ts b/cli/index.ts index e2dd9213..8c34bb05 100644 --- a/cli/index.ts +++ b/cli/index.ts @@ -203,7 +203,7 @@ async function serve(port: number, pathToSpec: string, options: Options = {}) { const watcher = watch(pathToSpecDirectory, watchOptions); const log = console.log.bind(console); - const handlePath = async path => { + const handlePath = async _path => { try { spec = await loadAndBundleSpec(pathToSpec); pageHTML = await getPageHTML(spec, pathToSpec, options);