From 16dc988db6b46c880c79ed0aa8c1fc82e8ea1fd4 Mon Sep 17 00:00:00 2001 From: konnorrogers Date: Tue, 13 Jun 2023 12:25:03 -0400 Subject: [PATCH] prettier --- scripts/build.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/build.js b/scripts/build.js index adf910c8..eb9c257a 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -10,7 +10,7 @@ import fs from 'fs/promises'; import getPort, { portNumbers } from 'get-port'; import ora from 'ora'; import util from 'util'; -import * as path from "path" +import * as path from 'path'; const { serve } = commandLineArgs([{ name: 'serve', type: Boolean }]); const outdir = 'dist'; @@ -208,7 +208,7 @@ await nextTask(`Copying the build to "${sitedir}"`, async () => { await deleteAsync(sitedir); // We copy the CDN build because that has everything bundled. - await copy(cdndir, path.join(sitedir, "cdn")); + await copy(cdndir, path.join(sitedir, 'cdn')); }); // Launch the dev server