From 8d28a6eef8605781fcd29d2985d5b4a849d7b5d1 Mon Sep 17 00:00:00 2001 From: Zakary Kamal Ismail Date: Wed, 16 Oct 2019 20:56:56 -0400 Subject: [PATCH] fix(cli): Lint cli/index.ts (#1072) --- cli/index.ts | 2 +- tsconfig.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/cli/index.ts b/cli/index.ts index 50f85f65..e2dd9213 100644 --- a/cli/index.ts +++ b/cli/index.ts @@ -17,10 +17,10 @@ import { watch } from 'chokidar'; import { createReadStream, existsSync, + lstatSync, readFileSync, ReadStream, writeFileSync, - lstatSync, } from 'fs'; import * as mkdirp from 'mkdirp'; diff --git a/tsconfig.json b/tsconfig.json index 6a327741..4710e2a5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -34,6 +34,7 @@ "e2e/**" ], "include": [ + "cli/index.ts", "./custom.d.ts", "./demo/playground/hmr-playground.tsx", "./src/**/*.ts?",