Skip to content

Commit c17039a

Browse files
committed
fix(module): correct formatting in installation log
1 parent 6ea36ef commit c17039a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/module/add.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ async function addModules(modules: ResolvedModule[], { skipInstall, skipConfig,
126126
const notInstalledModulesList = notInstalledModules.map(module => module.pkg).join('\`, \`')
127127
const dependency = notInstalledModules.length > 1 ? 'dependencies' : 'dependency'
128128
const a = notInstalledModules.length > 1 ? '' : ' a'
129-
logger.info(`Installing \`${notInstalledModulesList} as${a}\`${isDev ? ' development' : ''} ${dependency}`)
129+
logger.info(`Installing \`${notInstalledModulesList}\` as${a}${isDev ? ' development' : ''} ${dependency}`)
130130

131131
const res = await addDependency(notInstalledModules.map(module => module.pkg), {
132132
cwd,

0 commit comments

Comments
 (0)