From 3e073e7f66c39910d3a9336087876603852082e5 Mon Sep 17 00:00:00 2001 From: knotteye Date: Fri, 30 Oct 2020 06:25:47 -0500 Subject: [PATCH] Skip compiling templates when running migrations alone --- src/migrate.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/migrate.ts b/src/migrate.ts index 0e3cf14..450296d 100644 --- a/src/migrate.ts +++ b/src/migrate.ts @@ -3,6 +3,7 @@ import {init as clean} from "./cleanup"; import { config } from "./config"; async function run() { + process.argv = process.argv.concat(['--skip-compile']); await initDB(); await clean(); }