From 3561dcc10e71b7db953797be1819c6d4f396dfde Mon Sep 17 00:00:00 2001 From: Enoch Riese Date: Tue, 29 Nov 2022 20:07:06 -0600 Subject: [PATCH] lint fix --- packages/new-design/lib/utils.mjs | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/packages/new-design/lib/utils.mjs b/packages/new-design/lib/utils.mjs index 964b442af3e..b19a12c9885 100644 --- a/packages/new-design/lib/utils.mjs +++ b/packages/new-design/lib/utils.mjs @@ -322,13 +322,13 @@ const showTips = (config, choices) => { // Creates the environment based on the user's choices export const createEnvironment = async (choices) => { // Store directories for re-use - ;(config.cwd = cwd), - (config.source = { - root: cwd, - templateData: cwd + `/../templates/from-${choices.template}.mjs`, - templates: join(cwd, `/../templates/shared`), - shared: cwd + `/../shared`, - }) + config.cwd = cwd + config.source = { + root: cwd, + templateData: cwd + `/../templates/from-${choices.template}.mjs`, + templates: join(cwd, `/../templates/shared`), + shared: cwd + `/../shared`, + } config.dest = join(process.cwd(), choices.name) // Create target directory