Skip to content

Commit 15f3c20

Browse files
committed
Make io messages style consistent
1 parent 5e8f60c commit 15f3c20

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

app/sprinkles/core/src/Bakery/BuildAssets.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ protected function execute(InputInterface $input, OutputInterface $output)
8282
*/
8383
protected function npmInstall($force)
8484
{
85-
$this->io->section('<info>Installing npm dependencies</info>');
85+
$this->io->section('Installing npm dependencies');
8686
$this->io->writeln('> <comment>npm install</comment>');
8787

8888
// Temporarily change the working directory so we can install npm dependencies
@@ -96,7 +96,7 @@ protected function npmInstall($force)
9696

9797
// Skip if lockfile indicates previous run
9898
if (!$force && file_exists('package.lock') && filemtime('package.json') < filemtime('package.lock') - 1) {
99-
$this->io->writeln('> <comment>Skipping as package-lock.json age indicates dependencies are already installed</comment>');
99+
$this->io->writeln('Skipping as package-lock.json age indicates dependencies are already installed');
100100
chdir($wd);
101101

102102
return;

0 commit comments

Comments
 (0)