From 212e63e9f4ff53ff808407ec6890fbf1f85f42d3 Mon Sep 17 00:00:00 2001 From: Jamie Lynch Date: Mon, 25 Jan 2021 09:21:16 +0000 Subject: [PATCH] fix linting errors --- src/commands/migrate.ts | 2 +- src/commands/new.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/migrate.ts b/src/commands/migrate.ts index 83d583c..4248285 100644 --- a/src/commands/migrate.ts +++ b/src/commands/migrate.ts @@ -9,8 +9,8 @@ import { } from "../utils/args"; import { parse } from "../utils/cfn"; import { newAppImports, newTestImports } from "../utils/imports"; -import { constructStack } from "../utils/stack"; import { constructTest } from "../utils/snapshot"; +import { constructStack } from "../utils/stack"; interface MigrateCommandConfig { cfnPath: string; diff --git a/src/commands/new.ts b/src/commands/new.ts index a07f0a0..b8bd97d 100644 --- a/src/commands/new.ts +++ b/src/commands/new.ts @@ -13,9 +13,9 @@ import { newTestImports, } from "../utils/imports"; import { cancellablePrompts } from "../utils/prompts"; +import { constructTest } from "../utils/snapshot"; import type { StackTemplate } from "../utils/stack"; import { constructStack } from "../utils/stack"; -import { constructTest } from "../utils/snapshot"; interface NewCommandConfig { cdkDir: string;